-
Notifications
You must be signed in to change notification settings - Fork 29
/
package.json
72 lines (72 loc) · 1.54 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
{
"name": "LizGoban",
"version": "0.8.0-pre8",
"description": "An analysis tool of the game Go with Leela Zero and KataGo",
"author": "kaorahi <[email protected]>",
"license": "GPL-3.0",
"main": "./src/main.js",
"repository": {
"type": "git",
"url": "https://github.com/kaorahi/lizgoban"
},
"dependencies": {
"@sabaki/sgf": "^3.4.7",
"electron-store": "^8.0.2",
"iconv-lite": "^0.6.3",
"jschardet": "^3.0.0",
"tmp": "^0.2.1",
"twgl.js": "^5.0.4",
"xyz2sgf": "^0.1.0"
},
"devDependencies": {
"electron": "^32.1.2",
"electron-builder": "^25.0.5"
},
"build": {
"files": [
"src/{*.js,*.html,*.css,*.png}",
"src/sgf_from_image/{*.js,*.html,*.css,*.png}",
"sound/*.mp3"
],
"extraFiles": [
{
"from": "sound",
"to": "resources/external",
"filter": [
"*.mp3"
]
},
{
"from": "build_with/img",
"to": "resources/external",
"filter": [
"goisi_*.png"
]
}
],
"linux": {
"target": "AppImage",
"category": "Game",
"extraFiles": [
{
"from": "build_with/bin/linux",
"to": "resources/external",
"filter": [
"katago"
]
}
]
},
"win": {
"target": "portable"
},
"portable": {
"splashImage": "build_with/splash.bmp"
}
},
"scripts": {
"start": "electron .",
"build_lin": "electron-builder -l --x64",
"build_win": "electron-builder -w --x64"
}
}