-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
69 lines (69 loc) · 2.33 KB
/
Copy pathpackage.json
File metadata and controls
69 lines (69 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
{
"name": "@canboat/ts-pgns",
"version": "2.0.0",
"description": "TypeScript Canboat PGN Definitions",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
},
"./lookups": {
"types": "./dist/lookups.d.ts",
"default": "./dist/lookups.js"
}
},
"scripts": {
"test": "mocha",
"changelog": "github-changes -o canboat -r pgns -a --only-pulls --use-commit-body --data=pulls --tag-name=v$npm_package_version",
"release": "git tag -d v$npm_package_version; npm run changelog && git add CHANGELOG.md && git commit -m 'chore: update changelog' && git tag v$npm_package_version && git push --tags && git push",
"extract-lookups": "node scripts/extract-lookups.js",
"build": "npm run extract-lookups && tsc -b",
"watch": "tsc --watch",
"prettier": "prettier --write .",
"lint": "eslint --fix --format compact .",
"ci-lint": "eslint && prettier --check .",
"ci-test": "npm run build:all && npm run test && npm run ci-lint",
"format": "npm run prettier && npm run lint",
"generate:enums": "node dist/generator.js --enums > src/enums.ts",
"generate:pgns": "node dist/generator.js --pgns > src/pgns.ts",
"generate": "npm run generate:enums && npm run generate:pgns",
"build:docs": "typedoc",
"build:all": "npm run build && npm run build:docs"
},
"author": "Scott Bender <scott@scottbender.net>",
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "https://github.com/canboat/ts-pgns.git"
},
"dependencies": {
"camelcase": "^6.0.0",
"semver": "^7.7.2"
},
"devDependencies": {
"@canboat/canboatjs": "^3.5.1",
"@tsconfig/node20": "^20.1.6",
"@types/chai": "^5.2.2",
"@types/minimist": "^1.2.5",
"@types/mocha": "^10.0.10",
"@types/node": "^24.0.4",
"@types/semver": "^7.7.0",
"chai": "^5.2.0",
"chai-json-equal": "^0.0.1",
"chai-things": "^0.2.0",
"eslint": "^9.30.0",
"eslint-config-prettier": "^10.1.5",
"eslint-formatter-compact": "^8.40.0",
"minimist": "^1.2.8",
"mocha": "^11.7.1",
"prettier": "^3.6.2",
"ts-node": "^10.9.2",
"tsx": "^4.20.3",
"typedoc": "^0.28.7",
"typedoc-theme-hierarchy": "^6.0.0",
"typescript": "^5.8.3",
"typescript-eslint": "^8.35.0"
}
}