forked from lichess-org/chessground
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
69 lines (69 loc) · 1.65 KB
/
Copy pathpackage.json
File metadata and controls
69 lines (69 loc) · 1.65 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
{
"name": "@lichess-org/chessground",
"version": "10.1.1",
"//": "version is managed by the build system",
"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": {
"esbuild": "^0.28.1",
"jsdom": "^26.1.0",
"oxfmt": "^0.57.0",
"oxlint": "^1.72.0",
"oxlint-tsgolint": "^0.24.0",
"typescript": "^5.9.3",
"vitest": "^3.2.6"
},
"scripts": {
"prepare": "$npm_execpath run compile",
"compile": "tsc --sourceMap --declaration",
"lint": "oxlint",
"lint:fix": "oxlint --fix",
"format": "oxfmt",
"check-format": "oxfmt --check",
"bundle": "esbuild src/chessground.ts --bundle --format=esm --outfile=dist/chessground.min.js --minify",
"dist": "$npm_execpath run compile && $npm_execpath run bundle",
"test": "vitest run",
"test:watch": "vitest"
},
"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": "Lichess Team <contact@lichess.org>",
"license": "GPL-3.0-or-later",
"bugs": {
"url": "https://github.com/lichess-org/chessground/issues"
},
"funding": "https://lichess.org/patron",
"packageManager": "pnpm@11.5.1",
"engines": {
"node": ">=22",
"pnpm": "11"
}
}