-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
53 lines (53 loc) · 1.21 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
{
"name": "create-antd",
"version": "0.0.2",
"description": "An easy way to start a Ant Design project",
"type": "module",
"bin": {
"create-antd": "outfile.cjs"
},
"files": [
"outfile.cjs",
"template"
],
"engines": {
"node": ">=16.0.0"
},
"scripts": {
"prepare": "husky install",
"format": "prettier --write .",
"build": "zx ./scripts/build.mjs"
},
"repository": {
"type": "git",
"url": "git+https://github.com/zangguojun/create-antd.git"
},
"keywords": [],
"author": "zangguojun <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/zangguojun/create-antd/issues"
},
"homepage": "https://github.com/zangguojun/create-antd",
"devDependencies": {
"@tsconfig/node18": "^2.0.0",
"@types/eslint": "^8.37.0",
"@types/node": "^18.16.3",
"@types/prompts": "^2.4.4",
"esbuild": "^0.17.18",
"esbuild-plugin-license": "^1.2.2",
"husky": "^8.0.3",
"kolorist": "^1.8.0",
"lint-staged": "^13.2.2",
"minimist": "^1.2.8",
"npm-run-all": "^4.1.5",
"prettier": "^2.8.8",
"prompts": "^2.4.2",
"zx": "^4.3.0"
},
"lint-staged": {
"*.{js,ts,vue,json}": [
"prettier --write"
]
}
}