-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
33 lines (33 loc) · 957 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": "chess-fetcher",
"repository": {
"url": "https://github.com/rosen-score/chess-fetcher"
},
"version": "0.10.4",
"scripts": {
"build": "tsc",
"coverage": "vitest run --coverage --coverage.thresholds.100",
"format": "prettier --write .",
"tsc": "tsc --noEmit",
"mock-server": "ts-node tests/mock-server/server.ts",
"test": "vitest run",
"watch": "vitest"
},
"devDependencies": {
"@fastify/static": "^7.0.0",
"@mliebelt/pgn-types": "^1.0.3",
"@types/node": "^20.11.0",
"@vitest/coverage-v8": "^1.2.0",
"fastify": "^4.0.0",
"prettier": "^3.0.0",
"ts-node": "^10.8.0",
"typescript": "^5.0.0",
"vitest": "^1.2.0"
},
"dependencies": {
"@mliebelt/pgn-parser": "^1.4.6",
"fetch-ndjson": "^1.1.7"
},
"main": "dist/src/api.js",
"types": "dist/src/api.d.ts"
}