-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathpackage.json
55 lines (55 loc) · 1.42 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
{
"name": "svelte-chessground",
"description": "Svelte chessboard component. A Svelte wrapper for the full-featured Chessground chess UI.",
"keywords": [
"chess",
"svelte",
"chessground",
"chessboard"
],
"version": "2.0.3",
"license": "GPL-3.0",
"homepage": "https://github.com/gtim/svelte-chessground#readme",
"bugs": "https://github.com/gtim/svelte-chessground/issues",
"scripts": {
"dev": "vite dev",
"build": "perl generate_unstyled.pl && vite build && npm run package",
"preview": "vite preview",
"package": "svelte-kit sync && svelte-package && publint",
"prepublishOnly": "npm run package",
"check": "svelte-kit sync && svelte-check --tsconfig ./jsconfig.json",
"check:watch": "svelte-kit sync && svelte-check --tsconfig ./jsconfig.json --watch",
"lint": "eslint ."
},
"exports": {
".": {
"types": "./dist/index.d.ts",
"svelte": "./dist/index.js"
}
},
"files": [
"dist"
],
"peerDependencies": {
"svelte": "^3.54.0"
},
"devDependencies": {
"@sveltejs/adapter-auto": "^2.0.0",
"@sveltejs/kit": "^1.15.1",
"@sveltejs/package": "^2.0.0",
"eslint-plugin-jsdoc": "^46.0.0",
"eslint-plugin-svelte3": "^4.0.0",
"publint": "^0.1.9",
"svelte": "^3.54.0",
"svelte-check": "^3.0.1",
"tslib": "^2.4.1",
"typescript": "^5.0.0",
"vite": "^4.2.0"
},
"svelte": "./dist/index.js",
"types": "./dist/index.d.ts",
"type": "module",
"dependencies": {
"chessground": "^8.3.9"
}
}