-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 895 Bytes
/
Copy pathpackage.json
File metadata and controls
36 lines (36 loc) · 895 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
{
"name": "command",
"version": "1.1.0",
"description": "",
"main": "src/index.ts",
"scripts": {
"start": "ts-node src/index.ts",
"build": "tsc",
"lint": "eslint . --ext .ts",
"lint:fix": "eslint . --ext .ts --fix",
"test": "jest",
"update-deps": "ncu -u && npm install"
},
"private": true,
"dependencies": {
"commander": "^12.1.0",
"pnpm": "^9.13.2"
},
"devDependencies": {
"@eslint/js": "^9.9.1",
"@types/blessed": "^0.1.25",
"@types/jest": "^29.5.12",
"@types/node": "^22.5.0",
"@typescript-eslint/eslint-plugin": "^8.2.0",
"@typescript-eslint/parser": "^8.2.0",
"blessed": "^0.1.81",
"blessed-contrib": "^4.11.0",
"eslint": "^9.9.1",
"globals": "^15.9.0",
"jest": "^29.7.0",
"ts-jest": "^29.2.5",
"ts-node": "^10.9.2",
"typescript": "^5.5.4",
"typescript-eslint": "^8.2.0"
}
}