-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
43 lines (43 loc) · 1.1 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
{
"name": "chess.ts",
"version": "0.16.2",
"license": "BSD-2-Clause",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist/"
],
"homepage": "https://github.com/lubert/chess.ts",
"keywords": [
"chess"
],
"repository": {
"type": "git",
"url": "https://github.com/lubert/chess.ts.git"
},
"devDependencies": {
"@microsoft/api-documenter": "^7.8.21",
"@microsoft/api-extractor": "^7.9.1",
"@types/jest": "^26.0.3",
"@typescript-eslint/eslint-plugin": "^7.0.2",
"@typescript-eslint/parser": "^7.0.2",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"jest": "^29.7.0",
"prettier": "^3.2.5",
"ts-jest": "^29.1.2",
"ts-node": "^10.9.2",
"typescript": "^5.3.3"
},
"scripts": {
"api": "npm run build && api-extractor run --local --verbose",
"build": "tsc",
"build:docs": "npm run api && api-documenter markdown --input ./temp --output ./docs",
"lint": "eslint . --ext .js,.jsx,.ts,.tsx",
"prepare": "npm run build",
"test": "jest"
},
"dependencies": {
"treenode.ts": "^0.6.0"
}
}