-
-
Notifications
You must be signed in to change notification settings - Fork 22
/
package.json
52 lines (52 loc) · 1.35 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
{
"name": "@sabaki/shudan",
"version": "1.7.1",
"description": "A highly customizable, low-level Preact Goban component.",
"type": "module",
"main": "./src/main.js",
"types": "./src/main.d.ts",
"repository": {
"type": "git",
"url": "git+https://github.com/SabakiHQ/Shudan.git"
},
"keywords": [
"go",
"weiqi",
"baduk",
"goban",
"boardgame",
"ui",
"component",
"preact",
"react"
],
"author": "Yichuan Shen",
"license": "MIT",
"bugs": {
"url": "https://github.com/SabakiHQ/Shudan/issues"
},
"homepage": "https://github.com/SabakiHQ/Shudan",
"peerDependencies": {
"preact": "^8.4.2 || 10.x"
},
"dependencies": {
"classnames": "^2.3.1"
},
"devDependencies": {
"@sabaki/go-board": "^1.4.2",
"onchange": "^7.1.0",
"preact": "^10.5.14",
"prettier": "^2.7.1",
"webpack": "^5.52.0",
"webpack-cli": "^4.8.0"
},
"prettier": {
"proseWrap": "always"
},
"scripts": {
"build-demo": "webpack --entry ./demo/main.js -o ./demo --output-filename bundle.js --progress --mode production",
"watch-demo": "webpack --entry ./demo/main.js -o ./demo --output-filename bundle.js --progress --mode development --watch",
"format": "prettier \"**/*.{js,html,md}\" --write",
"format-watch": "onchange \"**/*.{js,html,md}\" -- prettier --write {{changed}}"
}
}