-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
38 lines (38 loc) · 895 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
{
"name": "create-nitro",
"version": "1.0.0",
"description": "",
"main": "index.js",
"license": "MIT",
"scripts": {
"build": "tspc",
"dev": "tspc --watch",
"test": "echo \"Error: no test specified\" && exit 1",
"pub": "npm run build && npm publish"
},
"bin": {
"create-nitro": "index.js"
},
"files": [
"dist/**",
"options/**",
"templates/**"
],
"publishConfig": {
"access": "public"
},
"dependencies": {
"commander": "^12.1.0",
"kolorist": "^1.8.0",
"prompts": "^2.4.2"
},
"devDependencies": {
"@biomejs/biome": "^1.7.3",
"@types/prompts": "^2.4.9",
"ts-patch": "^3.1.2",
"tslib": "^2.6.2",
"tsx": "^4.7.1",
"typescript": "^5.4.3",
"typescript-transform-paths": "^3.4.7"
}
}