-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
61 lines (61 loc) · 1.63 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
{
"name": "@haxtheweb/create",
"version": "9.0.11",
"publishConfig": {
"access": "public"
},
"description": "CLI for all things HAX the web",
"author": "HAXTheWeb core team",
"license": "Apache-2.0",
"engines": {
"node": ">=18.20.3"
},
"repository": {
"type": "git",
"url": "https://github.com/haxtheweb/create.git"
},
"bugs": {
"url": "https://github.com/haxtheweb/issues/issues"
},
"homepage": "https://hax.psu.edu/",
"scripts": {
"build": "rm -rf dist && babel src --out-dir dist --copy-files --include-dotfiles && chmod 774 dist/create.js",
"start": "npm run build && node ./dist/create.js && chmod 774 dist/create.js",
"release": "npm run build && commit-and-tag-version && git push --follow-tags origin main && npm publish",
"hax": "hax",
"dev": "nodemon --watch src",
"haxcms-nodejs-cli": "haxcms-nodejs-cli"
},
"bin": {
"create-haxtheweb": "./dist/create.js",
"hax": "./dist/create.js"
},
"files": [
"dist"
],
"keywords": [
"webcomponents",
"html",
"lit",
"haxtheweb"
],
"dependencies": {
"@clack/core": "0.3.4",
"@clack/prompts": "0.7.0",
"@haxtheweb/haxcms-nodejs": "^9.0.15",
"@haxtheweb/open-apis": "^9.0.11",
"ejs": "3.1.10",
"picocolors": "1.0.1",
"commander": "12.1.0"
},
"devDependencies": {
"nodemon": "^3.1.7",
"@babel/cli": "^7.24.6",
"@babel/core": "^7.24.6",
"@babel/preset-env": "7.24.6",
"@babel/register": "^7.24.6",
"@custom-elements-manifest/analyzer": "^0.10.2",
"babel-plugin-transform-dynamic-import": "^2.1.0",
"commit-and-tag-version": "12.4.1"
}
}