-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathpackage.json
43 lines (43 loc) · 887 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
{
"name": "create-vct",
"version": "0.1.3",
"type": "module",
"author": "wang xiang",
"bin": {
"create-vct": "index.js",
"cvt": "index.js"
},
"files": [
"index.js",
"template-*",
"*-templates",
"dist"
],
"main": "index.js",
"scripts": {
"dev": "unbuild --stub",
"build": "unbuild",
"typecheck": "tsc --noEmit",
"prepublishOnly": "npm run build",
"preinstall": "npx only-allow pnpm"
},
"engines": {
"node": "^14.18.0 || >=16.0.0"
},
"dependencies": {
"@babel/core": "^7.21.4",
"@types/minimist": "^1.2.2",
"@types/node": "^18.15.11",
"@types/prompts": "^2.4.3",
"esno": "^0.16.3",
"unbuild": "^1.2.1"
},
"devDependencies": {
"kolorist": "^1.7.0",
"minimist": "^1.2.8",
"prompts": "^2.4.2",
"ts-node": "^10.9.1",
"tslib": "^2.5.0",
"typescript": "^5.0.2"
}
}