-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
81 lines (81 loc) · 2.33 KB
/
Copy pathpackage.json
File metadata and controls
81 lines (81 loc) · 2.33 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
{
"name": "@chess-pgn/chess-pgn",
"description": "Chess library with enhanced PGN support for parsing large, multi-game PGN files.",
"version": "1.3.0",
"license": "BSD-2-Clause",
"main": "dist/cjs/chessPGN.js",
"module": "dist/esm/chessPGN.js",
"types": "dist/types/chessPGN.d.ts",
"homepage": "https://github.com/JeffML/chessPGN",
"keywords": [
"chess",
"pgn",
"pgn-parser",
"typescript",
"parser",
"chess-library",
"fen",
"chess-game",
"multi-game-pgn",
"chess.js",
"chess-moves",
"game-parser",
"worker-threads",
"chess-engine",
"chess-validation"
],
"author": "Jeff Lowery <jlowery2663@gmail.com>",
"scripts": {
"prepare": "npm run build",
"build": "npm run parser && tsc --noEmit && rollup -c",
"check": "npm run format:check && npm run lint && vitest run && npm run build && api-extractor run --verbose",
"clean": "rm -rf ./dist; rm -f src/pgn.js src/pgn.d.ts",
"format": "prettier --write .",
"format:check": "prettier --check .",
"lint": "eslint src/ --ext .ts",
"parser": "peggy -c peggy.config.mjs",
"test": "vitest --run",
"test:coverage": "vitest --coverage",
"bench": "tsx benchmarks/bench.ts",
"api:check": "npm run build && api-extractor run --verbose",
"api:update": "npm run build && api-extractor run --local --verbose"
},
"repository": {
"type": "git",
"url": "https://github.com/JeffML/chessPGN"
},
"engines": {
"node": ">=22.15.0"
},
"peerDependencies": {
"@chess-openings/eco.json": ">=2.2.0"
},
"peerDependenciesMeta": {
"@chess-openings/eco.json": {
"optional": true
}
},
"devDependencies": {
"@chess-openings/eco.json": "^2.2.0",
"@eslint/eslintrc": "^3.3.1",
"@eslint/js": "^9.29.0",
"@microsoft/api-extractor": "^7.53.1",
"@rollup/plugin-commonjs": "^28.0.3",
"@rollup/plugin-typescript": "^12.1.2",
"@types/node": "^20.0.0",
"@typescript-eslint/eslint-plugin": "^8.35.0",
"@typescript-eslint/parser": "^8.35.0",
"@vitest/coverage-v8": "^3.2.2",
"esbuild": "^0.27.0",
"eslint": "^9.29.0",
"peggy": "^4.2.0",
"prettier": "^3.1.0",
"rollup": "^4.41.1",
"rollup-plugin-dts": "^6.2.1",
"tinybench": "^4.0.1",
"tslib": "^2.8.1",
"tsx": "^4.19.4",
"typescript": "^5.9.3",
"vitest": "^3.2.2"
}
}