-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
executable file
·34 lines (34 loc) · 936 Bytes
/
package.json
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
{
"main": "dist/CliChess.js",
"name": "clichess",
"license": "MIT",
"dependencies": {
"blessed": "^0.1.81",
"blessed-contrib": "^4.10.1",
"chess.js": "^0.12.0",
"commander": "^8.3.0",
"cross-fetch": "^3.1.4",
"dotenv": "^10.0.0",
"fast-csv": "^4.3.6",
"replace-last": "^1.2.6"
},
"scripts": {
"clean": "rm -rf dist && rm -rf node_modules",
"build": "tsc -p .",
"start": "node dist/CliChess.js",
"feed": "npm run build && npm run start feed",
"tactics": "npm run build && npm start tactics"
},
"devDependencies": {
"@types/blessed": "^0.1.19",
"@types/chess.js": "^0.11.2",
"@types/node": "^16.11.7",
"tslib": "^2.3.1",
"@typescript-eslint/eslint-plugin": "^5.8.0",
"@typescript-eslint/parser": "^5.8.0",
"eslint": "^8.5.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-plugin-import": "^2.25.3",
"typescript": "^4.4.4"
}
}