-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
66 lines (66 loc) · 1.52 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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
{
"name": "shogiground",
"version": "0.10.1",
"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",
"module": "esm/shogiground.js",
"types": "esm/shogiground.d.ts",
"exports": {
".": {
"types": "./esm/shogiground.d.ts",
"import": "./esm/shogiground.js"
},
"./*": {
"types": "./esm/*.d.ts",
"import": "./esm/*.js"
}
},
"typesVersions": {
"*": {
"*": [
"esm/*"
]
}
},
"devDependencies": {
"@eslint/js": "^9",
"del-cli": "^6",
"esbuild": "^0.24.0",
"eslint": "^9",
"globals": "^15",
"prettier": "^3",
"typescript": "^5",
"typescript-eslint": "^8"
},
"scripts": {
"prepare": "$npm_execpath run clean && $npm_execpath run compile && $npm_execpath run dist",
"clean": "del esm && del dist && del tsconfig.tsbuildinfo",
"compile": "tsc",
"dist": "node esbuild.mjs",
"lint": "eslint --cache",
"format": "prettier --cache --write .",
"check-format": "prettier --check ."
},
"files": [
"dist",
"esm",
"src"
]
}