-
-
Notifications
You must be signed in to change notification settings - Fork 262
/
package.json
60 lines (60 loc) · 1.63 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
59
60
{
"name": "chessground",
"version": "9.2.0",
"description": "lichess.org chess ui",
"type": "module",
"main": "dist/chessground.js",
"types": "chessground.d.ts",
"exports": {
".": "./dist/chessground.js",
"./assets/*": "./assets/*",
"./*": "./dist/*.js"
},
"typesVersions": {
"*": {
"*": [
"dist/*"
]
}
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^7.7.0",
"@typescript-eslint/parser": "^7.7.0",
"esbuild": "^0.24.0",
"eslint": "^8.57.0",
"prettier": "^3.2.5",
"typescript": "^5.6.3"
},
"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",
"packageManager": "[email protected]+sha512.60c18acd138bff695d339be6ad13f7e936eea6745660d4cc4a776d5247c540d0edee1a563695c183a66eb917ef88f2b4feb1fc25f32a7adcadc7aaf3438e99c1"
}