-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
33 lines (33 loc) · 980 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
{
"name": "chessanalysis",
"version": "0.1.2",
"main": "dist/src/index.js",
"dependencies": {
"async": "^3.2.5",
"async-mutex": "^0.4.1",
"chess.js": "^1.0.0-beta.6",
"d3": "^7.8.5",
"node-zstandard": "^1.2.4",
"proper-lockfile": "^4.1.2",
"ts-node": "^10.9.2"
},
"devDependencies": {
"@babel/preset-typescript": "^7.23.0",
"@types/async": "3.2.24",
"@types/d3": "^7.4.1",
"@types/jest": "^29.5.5",
"@types/lodash": "^4.14.199",
"@types/node": "18.11.18",
"@types/proper-lockfile": "4.1.4",
"jest": "^29.7.0",
"ts-jest": "^29.1.1"
},
"scripts": {
"build": "tsc --build",
"start": "tsc --build && node dist/src/index.js && ts-node src/zst_decompressor.ts",
"test": "tsc --build && jest ./dist",
"scratch": "tsc --build && node dist/src/scratch.js",
"run-zst-decompressor": "tsc --build && node dist/src/zst_decompressor.js",
"rq": "tsc --build && node dist/src/queue.js"
}
}