-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
68 lines (68 loc) · 1.46 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
62
63
64
65
66
67
68
{
"name": "balm-cli",
"version": "4.6.0",
"description": "A simple CLI for scaffolding BalmJS projects.",
"keywords": [
"balm",
"cli",
"front-end",
"development",
"dev",
"build",
"web",
"tool",
"scaffold",
"stack",
"generator",
"generate",
"app",
"boilerplate"
],
"homepage": "https://github.com/balmjs/balm-cli#readme",
"license": "MIT",
"author": {
"name": "Elf-mousE",
"email": "[email protected]",
"url": "http://elf-mouse.me"
},
"type": "module",
"bin": {
"balm": "bin/balm.js",
"balm-go": "bin/balm-go.js",
"balm-init": "bin/balm-init.js",
"balm-list": "bin/balm-list.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/balmjs/balm-cli.git"
},
"dependencies": {
"async": "^3.2.6",
"chalk": "^5.3.0",
"commander": "^12.1.0",
"consolidate": "^1.0.4",
"download": "^8.0.0",
"global-directory": "^4.0.1",
"handlebars": "^4.7.8",
"inquirer": "^12.0.1",
"metalsmith": "^2.6.3",
"minimatch": "^9.0.5",
"multimatch": "^7.0.0",
"node-fetch": "^3.3.2",
"ora": "^8.1.1",
"rimraf": "^5.0.10",
"semver": "^7.6.3",
"validate-npm-package-name": "^6.0.0",
"yaml-js": "^0.3.1"
},
"devDependencies": {
"@types/node": "18",
"eslint": "9",
"eslint-config-prettier": "9",
"eslint-plugin-prettier": "5",
"prettier": "3"
},
"engines": {
"node": "^18.17.0 || >=20.5.0"
}
}