-
-
Notifications
You must be signed in to change notification settings - Fork 16
/
package.json
58 lines (58 loc) · 1.46 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": "chessgroundx",
"version": "10.6.3",
"description": "Extended lichess.org Chess UI",
"type": "module",
"module": "chessground.js",
"typings": "chessground.d.ts",
"dependencies": {},
"devDependencies": {
"@rollup/plugin-typescript": "^8",
"@typescript-eslint/eslint-plugin": "^5",
"@typescript-eslint/parser": "^5",
"chai": "^4.2.0",
"eslint": "^8",
"jsdom": "^17.0.0",
"jsdom-global": "^3.0.2",
"mocha": "^10.2.0",
"prettier": "^2",
"rollup": "^3",
"rollup-plugin-terser": "^7",
"tslib": "^2",
"typescript": "^4"
},
"scripts": {
"pretest": "npm run compile",
"test": "mocha --require jsdom-global/register 'tests/**/*.spec.js'",
"prepublish": "npm run compile",
"prepare": "npm 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/gbtami/chessgroundx",
"keywords": [
"chess",
"lichess",
"lichess.org",
"chessboard",
"ui",
"typescript"
],
"author": "Bajusz Tamás (https://github.com/gbtami)",
"license": "GPL-3.0",
"bugs": {
"url": "https://github.com/gbtami/chessgroundx/issues"
},
"funding": "https://pychess.org/patron"
}