forked from hayatbiralem/eco.json
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.11 KB
/
package.json
File metadata and controls
50 lines (50 loc) · 1.11 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
{
"name": "@chess-openings/eco.json",
"version": "2.1.0",
"description": "Read-only utilities for consuming chess opening data from eco.json",
"type": "module",
"main": "./dist/src/index.js",
"types": "./dist/src/index.d.ts",
"exports": {
".": {
"import": "./dist/src/index.js",
"types": "./dist/src/index.d.ts"
}
},
"files": [
"dist"
],
"scripts": {
"build": "tsc",
"watch": "tsc --watch",
"clean": "rm -rf dist",
"type-check": "tsc --noEmit",
"prepublishOnly": "npm run clean && npm run build",
"publish:public": "npm publish --access public"
},
"keywords": [
"chess",
"openings",
"eco",
"chess-openings",
"fen",
"pgn"
],
"author": "Jeff Lowery",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/JeffML/eco.json.git"
},
"bugs": {
"url": "https://github.com/JeffML/eco.json/issues"
},
"homepage": "https://github.com/JeffML/eco.json#readme",
"devDependencies": {
"@chess-pgn/chess-pgn": "^1.0.1",
"typescript": "^5.3.0"
},
"engines": {
"node": ">=18.0.0"
}
}