forked from lichess-org/chessground
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
54 lines (54 loc) · 1.33 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
{
"name": "chessground",
"version": "8.3.10",
"description": "lichess.org chess ui",
"type": "module",
"module": "chessground.js",
"typings": "chessground.d.ts",
"exports": {
".": "./chessground.js",
"./*": "./*.js"
},
"devDependencies": {
"@rollup/plugin-typescript": "^11.1.1",
"@typescript-eslint/eslint-plugin": "^5.59.9",
"@typescript-eslint/parser": "^5.59.9",
"eslint": "^8.42.0",
"prettier": "^2.8.8",
"rollup": "^2.79.1",
"rollup-plugin-terser": "^7.0.2",
"tslib": "^2.5.3",
"typescript": "^5.1.3"
},
"scripts": {
"prepare": "$npm_execpath run compile",
"compile": "tsc --outDir . --sourceMap --declaration",
"lint": "eslint src/*.ts",
"format": "prettier --write .",
"check-format": "prettier --check .",
"dist": "rollup --config"
},
"files": [
"/*.js",
"/*.d.ts",
"/*.js.map",
"/assets/*.css",
"/src/*.ts",
"!/rollup.config.js"
],
"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"
}