-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.18 KB
/
package.json
File metadata and controls
60 lines (60 loc) · 1.18 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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
{
"name": "take-flight-cli",
"version": "2.0.1",
"main": "dist/cli.js",
"files": [
"dist",
"templates"
],
"scripts": {
"build": "rimraf dist && tsc",
"dev": "ts-node src/cli.ts",
"test": "echo \"Error: no test specified\" && exit 1",
"prepublishOnly": "npm run build"
},
"bin": {
"take-flight": "./dist/cli.js"
},
"keywords": [
"boilerplate",
"starter",
"template",
"scaffolding",
"generator",
"cli",
"project-generator",
"project-template",
"starter-kit",
"codegen",
"nodejs",
"typescript",
"express",
"react",
"mongodb",
"fullstack",
"setup",
"automation"
],
"author": "caedussolo",
"repository": {
"type": "git",
"url": "https://github.com/CaedusSolo/TakeFlight.git"
},
"license": "ISC",
"description": "",
"devDependencies": {
"@types/fs-extra": "^11.0.4",
"@types/node": "^22.15.3",
"rimraf": "^6.0.1",
"ts-node": "^10.9.2",
"typescript": "^5.8.3"
},
"dependencies": {
"chalk": "^5.4.1",
"commander": "^13.1.0",
"fs-extra": "^11.3.0",
"handlebars": "^4.7.8",
"inquirer": "^12.6.0",
"nanospinner": "^1.2.2"
}
}