-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 835 Bytes
/
package.json
File metadata and controls
38 lines (38 loc) · 835 Bytes
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": "project-seed",
"description": "Command line interface for project-seed",
"version": "9.0.0",
"type": "module",
"bin": {
"project-seed": "./dist/index.js"
},
"files": [
"dist"
],
"scripts": {
"dev": "tsup --watch",
"start": "tsx src/index.ts",
"build": "tsup",
"generate": "node ./dist/index.js",
"generate-all": "./scripts/generate-all.sh",
"lint": "eslint src/",
"type-check": "tsc --noEmit"
},
"dependencies": {
"commander": "^14.0.0",
"fs-extra": "^11.2.0",
"inquirer": "^12.7.0"
},
"devDependencies": {
"@types/fs-extra": "^11.0.4",
"@types/inquirer": "^9.0.7",
"@types/node": "^22.10.7",
"eslint": "^9.21.0",
"tsup": "^8.0.2",
"tsx": "^4.19.2",
"typescript": "~5.8.3"
},
"engines": {
"node": ">=18.0.0"
}
}