-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 835 Bytes
/
Copy pathpackage.json
File metadata and controls
35 lines (35 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
{
"name": "gitchess",
"version": "1.0.0",
"description": "Git-based Chess game with CI/CD rule enforcement",
"type": "module",
"main": "dist/index.js",
"bin": {
"gitchess": "./dist/cli/index.js"
},
"scripts": {
"build": "tsc",
"dev": "tsc --watch",
"test": "jest",
"lint": "eslint src/**/*.ts",
"typecheck": "tsc --noEmit"
},
"keywords": ["chess", "git", "game", "ci-cd"],
"author": "",
"license": "MIT",
"devDependencies": {
"@types/jest": "^29.5.12",
"@types/node": "^20.11.30",
"@typescript-eslint/eslint-plugin": "^7.3.1",
"@typescript-eslint/parser": "^7.3.1",
"eslint": "^8.57.0",
"jest": "^29.7.0",
"ts-jest": "^29.1.2",
"typescript": "^5.4.3"
},
"dependencies": {
"chalk": "^5.3.0",
"commander": "^12.0.0",
"yaml": "^2.4.1"
}
}