forked from shaack/cm-chess
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.54 KB
/
package.json
File metadata and controls
53 lines (53 loc) · 1.54 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
{
"name": "@jackstenglein/chess",
"version": "2.2.20",
"description": "Built on top of chess.js and can handle variations (tree-structured move history)",
"main": "dist/cjs/index.js",
"module": "dist/esm/index.js",
"types": "dist/types/index.d.ts",
"scripts": {
"format": "prettier --write \"src/**/*.ts\"",
"build": "npm run format && tsc -b ./tsconfig.cjs.json ./tsconfig.esm.json ./tsconfig.types.json",
"test": "jest --config jestconfig.json",
"prepare": "npm run build",
"prepublishOnly": "npm run format && npm run test",
"postversion": "git push && git push --tags"
},
"repository": {
"type": "git",
"url": "git+https://github.com/jackstenglein/chess.git"
},
"keywords": [
"ES6",
"JavaScript",
"JS",
"chess"
],
"author": "jackstenglein",
"license": "MIT",
"bugs": {
"url": "https://github.com/jackstenglein/chess/issues"
},
"homepage": "https://github.com/jackstenglein/chess#readme",
"dependencies": {
"@jackstenglein/pgn-parser": "^2.0.13",
"chess.js": "^1.4.0"
},
"devDependencies": {
"@types/jest": "^30.0.0",
"@types/node": "^25.3.0",
"jest": "^30.2.0",
"prettier": "^3.8.1",
"ts-jest": "^29.4.6",
"tslint-config-prettier": "^1.18.0",
"typescript": "^5.9.3"
},
"eslintConfig": {
"extends": [
"tslint-config-prettier"
]
},
"files": [
"dist/**/*"
]
}