-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 1.59 KB
/
package.json
File metadata and controls
61 lines (61 loc) · 1.59 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
52
53
54
55
56
57
58
59
60
61
{
"name": "shogiground",
"version": "0.10.3",
"description": "lishogi.org shogi ui",
"author": "Thibault Duplessis (https://github.com/ornicar); WandererXII - modified for shogi",
"license": "GPL-3.0-or-later",
"repository": {
"type": "git",
"url": "git+https://github.com/WandererXII/shogiground.git"
},
"bugs": "https://github.com/WandererXII/shogiground/issues",
"funding": "https://lishogi.org/patron",
"keywords": [
"shogi",
"将棋",
"将棋板",
"shogiboard",
"lishogi",
"lishogi.org",
"typescript"
],
"type": "module",
"exports": {
".": {
"types": "./esm/shogiground.d.ts",
"import": "./esm/shogiground.js"
},
"./*": {
"types": "./esm/*.d.ts",
"import": "./esm/*.js"
}
},
"engines": {
"node": ">=22",
"pnpm": ">=10.16.0"
},
"devDependencies": {
"@biomejs/biome": "^2.3.15",
"@typescript/native-preview": "7.0.0-dev.20260213.1",
"del-cli": "^6.0.0",
"esbuild": "^0.27.3",
"nodemon": "^3.1.11",
"typescript": "^5.9.3"
},
"scripts": {
"prepublishOnly": "$npm_execpath run clean && $npm_execpath run compile && $npm_execpath run dist",
"clean": "del esm && del dist && del tsconfig.tsbuildinfo",
"compile": "tsc",
"compile:watch": "tsc --watch",
"type-check": "tsgo --noEmit && tsc --noEmit",
"dist": "node esbuild.mjs",
"dist:watch": "nodemon --watch src --ext ts --exec \"$npm_execpath run dist\"",
"check": "biome check --error-on-warnings",
"check:write": "biome check --write"
},
"files": [
"dist",
"esm",
"src"
]
}