forked from lichess-org/lila
-
-
Notifications
You must be signed in to change notification settings - Fork 41
/
Copy pathpackage.json
46 lines (46 loc) · 1.58 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
46
{
"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": ">=20",
"pnpm": ">=9"
},
"packageManager": "[email protected]",
"dependencies": {
"@build/tsconfig": "workspace:*",
"@types/jquery": "^3",
"@types/lishogi": "workspace:*",
"del-cli": "^6",
"typescript": "^5"
},
"devDependencies": {
"prettier": "^3"
},
"scripts": {
"preinstall": "npx only-allow pnpm",
"format": "prettier --write .",
"check-format": "prettier --check .",
"lint": "eslint . --ext .ts",
"type-check": "pnpm m run type-check",
"clean": "del public/compiled && del public/css && del public/translation && pnpm m run clean",
"build:js": "pnpm --filter @build/js run start",
"build:css": "pnpm --filter @build/css run start",
"build:vendor": "pnpm --filter @build/vendor run start",
"build:pieces": "pnpm --filter @build/pieces run start",
"build:i18n:ts": "pnpm --filter @build/i18n run start",
"build:i18n:scala": "pnpm --filter @bin/utils run trans-dump",
"build:ui": "pnpm run clean && pnpm run build:js && pnpm run build:i18n:ts && pnpm run build:css && pnpm run build:pieces && pnpm run build:vendor",
"server": "./lila"
}
}