-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 919 Bytes
/
package.json
File metadata and controls
41 lines (41 loc) · 919 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
39
40
41
{
"name": "@dead-development/deadlibrary-cli",
"version": "0.2.2",
"description": "Generate Angular code.",
"main": "./dist/index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "tsc",
"start": "node dist/index.js",
"dev": "NODE_ENV=development ts-node src/index.ts"
},
"knip": {
"entry": [
"src/index.ts"
],
"project": [
"src/**/*.ts"
]
},
"author": "Dead Development LLC",
"license": "SEE LICENSE IN LICENSE",
"dependencies": {
"axios": "^1.8.1",
"chalk": "^4.1.2",
"commander": "^14.0.1",
"firebase": "^12.2.1",
"knip": "^6.1.1",
"ora": "^8.2.0",
"prettier": "3.8.1",
"prompts": "^2.4.2"
},
"devDependencies": {
"@types/node": "^22.13.8",
"@types/prompts": "^2.4.9",
"ts-node": "^10.9.2",
"typescript": "^5.8.2"
},
"bin": {
"dead": "./dist/index.js"
}
}