forked from lichess-org/chessground
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
58 lines (58 loc) · 1.43 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
58
{
"name": "chessground",
"version": "9.0.4",
"description": "lichess.org chess ui",
"type": "module",
"main": "dist/chessground.js",
"types": "chessground.d.ts",
"exports": {
".": "./dist/chessground.js",
"./*": "./dist/*.js"
},
"typesVersions": {
"*": {
"*": [
"dist/*"
]
}
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^6.4.0",
"@typescript-eslint/parser": "^6.4.0",
"esbuild": "^0.19.2",
"eslint": "^8.47.0",
"prettier": "^3.0.2",
"typescript": "^5.1.6"
},
"scripts": {
"prepare": "$npm_execpath run compile",
"compile": "tsc --sourceMap --declaration",
"lint": "eslint src/*.ts",
"format": "prettier --write .",
"check-format": "prettier --check .",
"bundle": "esbuild src/chessground.ts --bundle --format=esm --outfile=dist/chessground.min.js --minify",
"dist": "$npm_execpath run compile && $npm_execpath run bundle"
},
"files": [
"/dist/*.js",
"/dist/*.d.ts",
"/dist/*.js.map",
"/assets/*.css",
"/src/*.ts"
],
"repository": "https://github.com/lichess-org/chessground",
"keywords": [
"chess",
"lichess",
"lichess.org",
"chessboard",
"ui",
"typescript"
],
"author": "Thibault Duplessis (https://github.com/ornicar)",
"license": "GPL-3.0-or-later",
"bugs": {
"url": "https://github.com/lichess-org/chessground/issues"
},
"funding": "https://lichess.org/patron"
}