-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
93 lines (93 loc) · 1.92 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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
{
"name": "create-vite-app-cli",
"version": "0.8.0",
"type": "module",
"license": "MIT",
"author": "Lane",
"bin": {
"create-vite-app-cli": "index.js"
},
"files": [
"index.js",
"template-*",
"dist"
],
"scripts": {
"dev": "unbuild --stub",
"build": "unbuild",
"typecheck": "tsc --noEmit",
"test-unit": "vitest run",
"prepare": "husky install"
},
"engines": {
"node": "^14.18.0 || >=16.0.0"
},
"keywords": [
"react-app",
"vue3-app",
"react-ts",
"vue3-ts",
"docker",
"openapi",
"swagger",
"query"
],
"repository": {
"type": "git",
"url": "git+https://github.com/rookie-luochao/create-vite-app-cli"
},
"bugs": {
"url": "https://github.com/rookie-luochao/create-vite-app-cli/issues"
},
"homepage": "https://github.com/rookie-luochao/create-vite-app-cli#readme",
"devDependencies": {
"@commitlint/cli": "^17.6.7",
"@commitlint/config-conventional": "^17.6.7",
"@types/cross-spawn": "^6.0.2",
"@types/fs-extra": "^11.0.1",
"@types/minimist": "^1.2.2",
"@types/node": "^18.16.19",
"@types/prompts": "^2.4.4",
"cross-spawn": "^7.0.3",
"execa": "^7.1.1",
"fs-extra": "^11.1.1",
"husky": "^8.0.3",
"kolorist": "^1.8.0",
"lint-staged": "^13.2.3",
"minimist": "^1.2.8",
"prettier": "^2.8.8",
"pretty-quick": "^3.1.3",
"prompts": "^2.4.2",
"unbuild": "^1.2.1",
"vitest": "^0.33.0"
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
],
"rules": {
"type-enum": [
2,
"always",
[
"build",
"chore",
"ci",
"docs",
"feat",
"fix",
"perf",
"refactor",
"revert",
"style",
"test"
]
]
}
},
"prettier": {
"trailingComma": "all",
"arrowParens": "always",
"printWidth": 120
}
}