-
-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.25 KB
/
package.json
File metadata and controls
45 lines (45 loc) · 1.25 KB
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": "shoginet",
"version": "5.3.2",
"description": "Distributed network for lishogi.org",
"license": "AGPL-3.0-or-later",
"author": "WandererXII",
"repository": {
"type": "git",
"url": "https://github.com/WandererXII/shoginet"
},
"bugs": {
"url": "https://github.com/WandererXII/shoginet/issues"
},
"homepage": "https://lishogi.org",
"type": "module",
"engines": {
"node": ">=22"
},
"dependencies": {
"@biomejs/biome": "2.3.15",
"@types/config": "^3.3.5",
"@types/node": "^22.19.11",
"@types/semver": "^7.7.1",
"config": "^4.3.0",
"got": "^14.6.6",
"http-status-codes": "^2.3.0",
"semver": "^7.7.4",
"shogiops": "^0.21.0",
"tslog": "^4.10.2",
"tsx": "^4.21.0",
"typescript": "^5.9.3"
},
"scripts": {
"preinstall": "$npm_execpath run copy-config",
"start": "tsx ./src/main.ts",
"copy-config": "node ./scripts/copy-config.js",
"test": "NODE_ENV=test tsx ./test/main.ts",
"build-engines": "$npm_execpath run build-yaneuraou && $npm_execpath run build-fairy",
"build-yaneuraou": "./scripts/yaneuraou.sh",
"build-fairy": "./scripts/fairy.sh",
"check": "biome check",
"check:write": "biome check --write",
"type-check": "tsc --noEmit"
}
}