-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
66 lines (66 loc) · 1.86 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
{
"name": "zeroquake",
"productName": "Zero Quake",
"version": "0.7.10",
"description": "地震に関する情報を即座に受信できるアプリケーションです。緊急地震速報に加え、津波情報や地震情報の受信に対応しています。このアプリ一つで、様々な種類の情報を、迅速に、分かりやすく表示します。",
"scripts": {
"start": "electron . --develop --debug-mode"
},
"build": {
"win": {
"icon": "src/img/icon.ico",
"publish": {
"provider": "github",
"owner": "{USER_NAME}"
},
"target": {
"target": "nsis"
}
},
"nsis": {
"artifactName": "ZeroQuake_Setup.${ext}",
"oneClick": false,
"allowToChangeInstallationDirectory": true,
"createStartMenuShortcut": true,
"createDesktopShortcut": true,
"shortcutName": "Zero Quake"
},
"appx": {
"displayName": "Zero Quake",
"identityName": "Benidate.ZeroQuake",
"applicationId": "Benidate.ZeroQuake",
"publisherDisplayName": "Benidate",
"publisher": "CN=0FCA04CE-D29D-4DB6-BA68-14F151A28AD4",
"languages": [
"JA-JP"
],
"backgroundColor": "#202227"
}
},
"type": "module",
"main": "src/main.js",
"author": "benidate",
"license": "GPL-2.0",
"repository": {
"type": "git",
"url": "git+https://github.com/0Quake/Zero-Quake.git"
},
"bugs": {
"url": "https://github.com/0Quake/Zero-Quake/issues"
},
"homepage": "https://0quake.github.io/ZeroQuake_Website/",
"devDependencies": {
"electron": "^34.0.2",
"electron-builder": "^25.1.8",
"eslint": "^9.19.0",
"prettier": "^3.4.2"
},
"dependencies": {
"@turf/turf": "^7.2.0",
"electron-store": "^10.0.1",
"jsdom": "^26.0.0",
"maplibre-gl": "^5.1.0",
"path": "^0.12.7",
"websocket": "^1.0.35"
}
}