-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
executable file
·45 lines (45 loc) · 940 Bytes
/
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
{
"name": "create-jmi",
"version": "1.0.2",
"description": "模板代码快速创建脚手架",
"main": "index.js",
"scripts": {
"test:unit": "vitest run",
"test:force": "vitest run -u",
"watch": "father dev",
"build": "father build"
},
"bin": {
"jmi": "./bin/jmi.js"
},
"files": [
"bin",
"cjs",
"esm",
"templates"
],
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@clack/prompts": "^0.7.0",
"cac": "^6.7.14",
"chalk": "^4.0.0",
"execa": "^8.0.1",
"fs-extra": "^11.2.0",
"glob": "^10.3.10",
"lodash-es": "^4.17.21",
"mustache": "^4.2.0",
"prompts": "^2.4.2"
},
"devDependencies": {
"@types/node": "^20.10.4",
"@umijs/fabric": "^3.0.0",
"conventional-changelog-cli": "^4.1.0",
"eslint": "~7.32.0",
"father": "^4.3.7",
"husky": "^8.0.3",
"typescript": "^5.3.3",
"vitest": "^1.0.2"
}
}