forked from SabakiHQ/Sabaki
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
104 lines (104 loc) · 2.72 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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
{
"name": "sabaki",
"productName": "Sabaki",
"version": "0.35.1",
"description": "An elegant Go/Baduk/Weiqi board and SGF editor for a more civilized age.",
"author": "Yichuan Shen <[email protected]>",
"homepage": "http://sabaki.yichuanshen.de",
"license": "MIT",
"main": "./src/main.js",
"repository": {
"type": "git",
"url": "https://github.com/SabakiHQ/Sabaki"
},
"bugs": {
"url": "https://github.com/SabakiHQ/Sabaki/issues"
},
"build": {
"appId": "de.yichuanshen.sabaki",
"copyright": "Copyright © 2015-2018 Yichuan Shen",
"compression": "maximum",
"linux": {
"target": "AppImage",
"category": "Game"
},
"mac": {
"category": "public.app-category.board-games",
"target": [
"7z"
]
},
"nsis": {
"oneClick": false,
"perMachine": true,
"allowToChangeInstallationDirectory": true
},
"fileAssociations": [
{
"ext": "sgf",
"name": "SGF",
"description": "Smart Game Format"
},
{
"ext": "ngf",
"name": "NGF",
"description": "wBaduk NGF"
},
{
"ext": "gib",
"name": "GIB",
"description": "Tygem GIB"
}
],
"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.0",
"@sabaki/gtp": "^1.1.1",
"@sabaki/influence": "^1.1.4",
"@sabaki/sgf": "^2.1.0",
"argv-split": "^2.0.1",
"classnames": "^2.2.6",
"iconv-lite": "^0.4.23",
"jschardet": "^1.5.1",
"natsort": "^1.0.6",
"octicons": "^8.0.0",
"pikaday": "^1.7.0",
"preact": "^8.2.9",
"react-markdown": "^3.3.4",
"recursive-copy": "^2.0.9",
"remark-breaks": "^1.0.0",
"rimraf": "^2.6.2",
"uuid": "^3.3.2"
},
"devDependencies": {
"electron": "^2.0.6",
"electron-builder": "^20.26.1",
"mocha": "^5.2.0",
"raw-loader": "^0.5.1",
"react": "^16.4.2",
"tmp": "0.0.33",
"uglifyjs-webpack-plugin": "^1.2.7",
"webpack": "^4.16.4",
"webpack-cli": "^3.1.0"
},
"scripts": {
"test": "mocha",
"start": "electron ./",
"bundle": "webpack --mode production --progress",
"watch": "webpack --mode development --progress --watch",
"build": "npm run bundle && electron-builder --dir",
"dist:macos": "npm run bundle && electron-builder -m --x64",
"dist:linux": "npm run bundle && electron-builder -l --ia32 --x64",
"dist:win32": "npm run bundle && electron-builder -w --ia32",
"dist:win64": "npm run bundle && electron-builder -w --x64"
}
}