-
Notifications
You must be signed in to change notification settings - Fork 22
/
Copy pathpackage.json
57 lines (57 loc) · 1.59 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
{
"name": "@mliebelt/pgn-parser",
"description": "A PEG parser to read PGN (Portable Game Notation) games.",
"keywords": [
"chess",
"pgn",
"peg",
"parser"
],
"version": "1.4.15",
"homepage": "https://github.com/mliebelt/pgn-parser/blob/master/README.md",
"bugs": "https://github.com/mliebelt/pgn-parser/issues",
"main": "lib/index.umd.js",
"module": "lib/index.umd.js",
"types": "lib/index.umd.d.ts",
"files": [
"README.md",
"lib/index.umd.d.ts",
"lib/index.umd.js",
"doc/*",
"bin/*"
],
"bin": "./bin/pgn-to-json.js",
"author": "mliebelt",
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "https://github.com/mliebelt/pgn-parser.git"
},
"dependencies": {
"@mliebelt/pgn-types": "^1.0.4"
},
"devDependencies": {
"@rollup/plugin-commonjs": "^28.0.0",
"@rollup/plugin-node-resolve": "^16.0.0",
"rollup-plugin-dts": "^6.1.0",
"@types/node": "^22.0.0",
"peggy": "^4.0.0",
"rollup": "^4.9.4",
"tsm": "^2.0.0",
"ts-loader": "^9.5.1",
"ts-node": "^10.9.1",
"typescript": "^5.3.2",
"uvu": "^0.5.6"
},
"scripts": {
"clean": "rm -fr lib/*",
"buildpeg": "node ./bin/build-peg.js",
"build": "npm run clean && npm run mjs && npm run umd && npm run dts",
"mjs": "tsc -p tsconfig-mjs.json",
"cjs": "tsc -p tsconfig.json",
"umd": "rollup lib/mjs/index.js -c rollup.config.mjs -o lib/index.umd.js -f umd",
"dts": "cp src/_pgn-parser-types.d.ts lib/mjs/ && rollup -c rollup.config-dts.mjs",
"test": "uvu -r tsm test",
"prepare": "npm run build && npm test"
}
}