-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
70 lines (70 loc) · 1.55 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
67
68
69
70
{
"name": "shogiops",
"version": "0.18.0",
"description": "Shogi rules and operations",
"author": "Niklas Fiekas (chessops), WandererXII (shogiops)",
"license": "GPL-3.0-or-later",
"repository": {
"type": "git",
"url": "https://github.com/WandererXII/shogiops"
},
"bugs": "https://github.com/WandererXII/shogiops/issues",
"funding": "https://lishogi.org/patron",
"keywords": [
"shogi",
"lishogi",
"sfen",
"usi",
"typescript"
],
"sideEffects": false,
"type": "module",
"module": "dist/index.js",
"types": "dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
},
"./*": {
"types": "./dist/*.d.ts",
"import": "./dist/*.js"
}
},
"typesVersions": {
"*": {
"*": [
"dist/*"
]
}
},
"dependencies": {
"@badrap/result": "^0.2"
},
"devDependencies": {
"@eslint/js": "^9",
"@trivago/prettier-plugin-sort-imports": "^4",
"del-cli": "^6",
"eslint": "^9",
"prettier": "^3",
"typedoc": "^0.26",
"typescript": "^5",
"typescript-eslint": "^8",
"vitest": "^2"
},
"scripts": {
"prepare": "$npm_execpath run clean && $npm_execpath run compile",
"clean": "del dist && del *.tsbuildinfo",
"compile": "tsc",
"type-check": "tsc --noEmit",
"test": "vitest",
"doc": "typedoc src/index.ts",
"lint": "eslint --cache",
"format": "prettier --cache --write .",
"format-check": "prettier --cache --check ."
},
"files": [
"dist",
"src"
]
}