-
-
Notifications
You must be signed in to change notification settings - Fork 14
/
package.json
45 lines (45 loc) · 1.49 KB
/
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
35
36
37
38
39
40
41
42
43
44
45
{
"name": "syzygy-tables.info",
"version": "1.0.0",
"private": true,
"description": "User interface and public API for probing Syzygy endgame tablebases",
"keywords": [
"syzygy",
"chess",
"endgame",
"tablebase"
],
"homepage": "https://syzygy-tables.info",
"bugs": {
"url": "https://github.com/niklasf/syzygy-tables.info/issues",
"email": "[email protected]"
},
"license": "AGPL-3.0-or-later",
"author": {
"name": "Niklas Fiekas",
"email": "[email protected]"
},
"repository": "https://github.com/niklasf/syzygy-tables.info",
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^8",
"@typescript-eslint/parser": "^8",
"eslint": "^9",
"prettier": "^3",
"tslib": "^2",
"typescript": "^5",
"esbuild": "^0.24"
},
"dependencies": {
"@badrap/result": "^0.2",
"chessground": "^9",
"chessops": "^0.14"
},
"scripts": {
"prepare": "$npm_execpath run build-js && $npm_execpath run build-css",
"build-js": "tsc -noEmit && esbuild --bundle src/main.ts --minify --sourcemap --outfile=static/js/main.min.js --target=es2018,chrome105,edge91,firefox67,opera55,safari11",
"build-css": "esbuild --bundle static/css/style.css --minify --sourcemap --external:\"*.woff\" --external:\"*.woff2\" --outfile=static/css/style.min.css --target=chrome105,edge91,firefox67,opera55,safari11",
"lint": "eslint src/*.ts",
"format": "prettier --write .",
"check-format": "prettier --check ."
}
}