-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.1 KB
/
package.json
File metadata and controls
48 lines (48 loc) · 1.1 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
{
"name": "baize-cli",
"version": "1.2.0",
"description": "React 项目脚手架...",
"type": "module",
"main": "src/index.js",
"bin": {
"baize": "./bin/index.js"
},
"scripts": {
"start": "node bin/index.js",
"lint": "eslint src/ test/",
"lint:fix": "eslint src/ test/ --fix",
"format": "prettier --write \"**/*.{js,json,md}\"",
"test": "node --experimental-vm-modules node_modules/jest/bin/jest.js",
"release": "standard-version"
},
"keywords": [
"react",
"cli",
"admin",
"typescript",
"baize"
],
"author": "wkylin.w",
"license": "MIT",
"dependencies": {
"chalk": "^5.3.0",
"commander": "^14.0.2",
"inquirer": "^9.2.0",
"shelljs": "^0.8.5"
},
"devDependencies": {
"eslint": "^8.50.0",
"eslint-config-prettier": "^9.0.0",
"jest": "^29.7.0",
"prettier": "^3.0.0",
"standard-version": "^9.5.0"
},
"repository": {
"type": "git",
"url": "git@github.com:wkylin/baize-cli.git"
},
"bugs": {
"url": "https://github.com/wkylin/baize-cli/issues"
},
"homepage": "https://github.com/wkylin/baize-cli"
}