-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.45 KB
/
package.json
File metadata and controls
46 lines (46 loc) · 1.45 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
{
"name": "@weebforge/chess",
"version": "1.0.0",
"description": "Chess utilities for ForgeScript — board rendering, move validation, and game management.",
"keywords": [
"chess"
],
"homepage": "https://github.com/weebforge/ForgeChess#readme",
"bugs": {
"url": "https://github.com/weebforge/ForgeChess/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/weebforge/ForgeChess.git"
},
"license": "GPL-3.0-or-later",
"author": "lezii",
"type": "commonjs",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"prepublishOnly": "tsc",
"build": "tsc -p tsconfig.json",
"docgen": "npm run eslint && npm run build && typedoc ./src --plugin typedoc-rhineai-theme --out ./docs && node dist/docgen",
"eslint": "eslint ./src/**/* --fix && prettier src --write",
"commit": "npm run docgen && node dist/@build/commit",
"test": "npm run build && node dist/__scripts__/index"
},
"devDependencies": {
"@tryforge/forgescript": "github:tryforge/ForgeScript#dev",
"@types/node": "^25.0.9",
"@typescript-eslint/eslint-plugin": "^8.53.0",
"@typescript-eslint/parser": "^8.53.0",
"dotenv": "^17.2.3",
"eslint": "^9.39.2",
"eslint-config-prettier": "^10.1.8",
"prettier": "^3.8.0",
"typedoc": "^0.28.16",
"typedoc-rhineai-theme": "^1.2.0",
"typescript": "^5.9.3"
},
"dependencies": {
"chess": "^1.5.1",
"tiny-typed-emitter": "^2.1.0"
}
}