forked from lichess-org/lila
-
-
Notifications
You must be signed in to change notification settings - Fork 54
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 2.03 KB
/
Copy pathpackage.json
File metadata and controls
51 lines (51 loc) · 2.03 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
46
47
48
49
50
51
{
"name": "lishogi",
"private": true,
"description": "lishogi.org: the forever free, adless and open source shogi server",
"repository": {
"type": "git",
"url": "https://github.com/WandererXII/lishogi.git"
},
"author": "Thibault Duplessis and the gang (lichess), WandererXII (lishogi)",
"license": "AGPL-3.0-or-later",
"bugs": {
"url": "https://github.com/WandererXII/lishogi/issues"
},
"homepage": "https://lishogi.org",
"engines": {
"node": ">=22",
"pnpm": ">=10.6"
},
"devDependencies": {
"@biomejs/biome": "^2.4.7",
"@config/tsconfig": "workspace:*",
"@types/jquery": "^3.5.34",
"@types/lishogi": "workspace:*",
"@types/node": "^22.19.15",
"@typescript/native-preview": "7.0.0-dev.20260317.1",
"knip": "^5.87.0",
"prettier": "^3.8.1",
"stylelint": "^16.26.1",
"stylelint-config-standard-scss": "^16.0.0",
"tsx": "^4.21.0",
"typescript": "^5.9.3"
},
"scripts": {
"preinstall": "npx only-allow pnpm",
"ui:build": "pnpm run --parallel build",
"ui:build:watch": "pnpm run --parallel build:watch",
"ui:lint": "biome check && knip --no-config-hints && stylelint **/*.scss --cache --ignore-path .gitignore",
"ui:lint:fix": "biome check --write && knip --no-config-hints --fix && stylelint **/*.scss --cache --ignore-path .gitignore --fix",
"ui:type-check": "pnpm -F './ui/*' -F './ui/@build/*' exec sh -c 'pwd && tsc --noEmit'",
"ui:type-check-native": "pnpm -F './ui/*' -F './ui/@build/*' exec sh -c 'pwd && tsgo --noEmit'",
"ui:format": "biome format && prettier --cache --check .",
"ui:format:fix": "biome format --write && prettier --cache --write .",
"i18n:lint": "pnpm -F @bin/utils run trans:lint",
"server:run": "./lila.sh",
"server:i18n": "pnpm -F @bin/utils run trans:dump",
"server:icons": "pnpm -F @bin/utils run icons:dump",
"server:modules": "pnpm -F @bin/utils run module-deps",
"server:format": "./lila.sh 'scalafmtCheck;scalafmtSbtCheck;'",
"server:format:fix": "./lila.sh 'scalafmtAll;scalafmtSbt;'"
}
}