-
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1 KB
/
package.json
File metadata and controls
46 lines (46 loc) · 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
{
"name": "create-pnstack",
"version": "0.0.7",
"type": "module",
"license": "MIT",
"author": "Nguyen Pham",
"bin": {
"create-pnstack": "index.js",
"pntool": "index.js"
},
"files": [
"index.js",
"templates",
"dist"
],
"scripts": {
"dev": "unbuild --stub && npm run start",
"build": "unbuild",
"typecheck": "tsc --noEmit",
"prepublishOnly": "npm run build",
"start": "node index.js"
},
"engines": {
"node": "^14.18.0 || >=16.0.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/pnstack/create-pnstack.git"
},
"bugs": {
"url": "https://github.com/pnstack/create-pnstack/issues"
},
"homepage": "https://github.com/pnstack/create-pnstack",
"devDependencies": {
"@types/cross-spawn": "^6.0.6",
"@types/minimist": "^1.2.5",
"@types/prompts": "^2.4.9",
"cross-spawn": "^7.0.3",
"kolorist": "^1.8.0",
"minimist": "^1.2.8",
"prompts": "^2.4.2"
},
"dependencies": {
"unbuild": "^1.2.1"
}
}