-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpackage.json
67 lines (67 loc) Β· 1.77 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
59
60
61
62
63
64
65
66
67
{
"name": "bugout-browser",
"productName": "BUGOUT",
"version": "1.4.2",
"description": "Graphical user interface for BUGOUT Go/Baduk/Weiqi",
"author": "Terkwood <[email protected]>",
"homepage": "https://github.com/Terkwood/BUGOUT",
"license": "MIT",
"main": "./src/main.js",
"repository": {
"type": "git",
"url": "https://github.com/Terkwood/BUGOUT"
},
"bugs": {
"url": "https://github.com/Terkwood/BUGOUT/issues"
},
"build": {
"appId": "notreally",
"copyright": "Copyright Β© 2020 Yichuan Shen (modded by Terkwood)",
"compression": "normal",
"fileAssociations": [
{
"ext": "sgf",
"name": "SGF",
"description": "Smart Game Format"
}
],
"files": [
"**/*",
"bundle.js",
"!bundle.js.map",
"!**/{.c9,scss,docs,test,tests,devtools,plugins,examples}${/*}",
"!data/shapes.sgf",
"!src/components${/*}",
"!src/modules${/*}"
]
},
"dependencies": {
"@sabaki/deadstones": "^2.1.1",
"@sabaki/immutable-gametree": "^1.7.2",
"@sabaki/influence": "^1.1.4",
"@sabaki/sgf": "^3.3.0",
"@sabaki/shudan": "^1.3.11",
"copy-text-to-clipboard": "^1.0.3",
"dolm": "^0.4.2-alpha",
"natsort": "^1.0.6",
"octicons": "^8.5.0",
"pikaday": "^1.8.0",
"preact": "^8.4.2",
"preact-material-components": "^1.5.8",
"react-markdown": "^3.6.0",
"remark-breaks": "^1.0.1",
"robust-websocket": "^1.0.0",
"uuid": "^3.3.2"
},
"devDependencies": {
"http-server": "^0.12.1",
"webpack": "^4.44.2",
"webpack-cli": "^3.3.11"
},
"scripts": {
"test": "",
"build": "webpack --mode production --progress",
"watch": "webpack --mode development --progress --watch",
"start": "http-server"
}
}