-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.17 KB
/
package.json
File metadata and controls
51 lines (51 loc) · 1.17 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
{
"name": "project-kickoff",
"version": "2.0.0",
"description": "CLI tool to scaffold production-ready projects with security best practices baked in",
"main": "dist/index.js",
"bin": {
"kickoff": "./dist/index.js"
},
"type": "module",
"scripts": {
"build": "tsc && cp -r src/templates dist/",
"dev": "tsx src/index.ts",
"start": "node dist/index.js",
"lint": "eslint src --ext .ts",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage",
"prepare": "npm run build"
},
"keywords": [
"cli",
"scaffold",
"project-generator",
"typescript",
"docker",
"devops"
],
"author": "abe238",
"license": "MIT",
"devDependencies": {
"@types/ejs": "^3.1.5",
"@types/fs-extra": "^11.0.4",
"@types/inquirer": "^9.0.7",
"@types/node": "^22.10.2",
"@vitest/coverage-v8": "^4.0.15",
"typescript": "^5.7.2",
"vitest": "^4.0.15"
},
"dependencies": {
"chalk": "^5.3.0",
"commander": "^12.1.0",
"ejs": "^3.1.10",
"execa": "^9.5.1",
"fs-extra": "^11.2.0",
"inquirer": "^12.2.0",
"ora": "^8.1.1"
},
"engines": {
"node": ">=18.0.0"
}
}