-
-
Notifications
You must be signed in to change notification settings - Fork 378
/
package.json
91 lines (91 loc) · 2.22 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
{
"name": "sabaki",
"productName": "Sabaki",
"version": "0.30.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": "main.js",
"repository": {
"type": "git",
"url": "https://github.com/yishn/Sabaki"
},
"bugs": {
"url": "https://github.com/yishn/Sabaki/issues"
},
"build": {
"appId": "de.yichuanshen.sabaki",
"copyright": "Copyright © 2015-2017 Yichuan Shen",
"compression": "maximum",
"linux": {
"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,src,devtools,plugins,examples}${/*}",
"!node_modules/moment${/*}",
"!node_modules/octicons/build/*",
"node_modules/octicons/build/svg",
"!node_modules/jschardet/dist${/*}",
"node_modules/jschardet/src",
"!node_modules/preact/*.{map,js}",
"!node_modules/preact/dist/*",
"node_modules/preact/dist/preact.js"
]
},
"dependencies": {
"argv-split": "^2.0.1",
"classnames": "^2.2.5",
"iconv-lite": "^0.4.13",
"jschardet": "^1.4.2",
"natsort": "^1.0.6",
"octicons": "^5.0.1",
"pikaday": "~1.4.0",
"preact": "^8.1.0"
},
"devDependencies": {
"electron": "1.6.7",
"electron-builder": "^17.1.1",
"mocha": "^3.0.2",
"tmp": "~0.0.29"
},
"scripts": {
"test": "mocha",
"pack": "build --dir",
"dist:macos": "build -m --x64",
"dist:linux": "build -l --ia32 --x64",
"dist:win32": "build -w --ia32",
"dist:win64": "build -w --x64"
}
}