-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
70 lines (70 loc) · 1.86 KB
/
package.json
File metadata and controls
70 lines (70 loc) · 1.86 KB
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
62
63
64
65
66
67
68
69
70
{
"name": "@haxtheweb/create",
"version": "25.0.2",
"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": "haxcms-nodejs",
"local": "npm run build && npm link"
},
"man": [
"./dist/docs/hax.1"
],
"bin": {
"create-haxtheweb": "./dist/create.js",
"hax": "./dist/create.js"
},
"files": [
"dist"
],
"keywords": [
"webcomponents",
"html",
"lit",
"haxtheweb"
],
"dependencies": {
"@clack/core": "0.5.0",
"@clack/prompts": "0.11.0",
"@haxtheweb/haxcms-nodejs": "^25.0.0",
"@haxtheweb/open-apis": "^25.0.0",
"commander": "12.1.0",
"ejs": "3.1.10",
"js-yaml": "4.1.0",
"node-html-parser": "6.1.13",
"open": "^8.4.2",
"picocolors": "1.0.1",
"winston": "3.17.0"
},
"devDependencies": {
"@babel/cli": "^7.27.0",
"@babel/core": "^7.26.10",
"@babel/plugin-syntax-import-attributes": "^7.26.0",
"@babel/preset-env": "^7.26.9",
"@babel/register": "^7.25.9",
"@custom-elements-manifest/analyzer": "0.10.4",
"babel-plugin-transform-dynamic-import": "^2.1.0",
"commit-and-tag-version": "12.4.1",
"nodemon": "^3.1.7"
}
}