-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathpackage.json
More file actions
78 lines (78 loc) · 1.88 KB
/
package.json
File metadata and controls
78 lines (78 loc) · 1.88 KB
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
{
"name": "zeroquake",
"productName": "Zero Quake",
"version": "0.9.5",
"description": "Zero Quake",
"scripts": {
"start": "electron . --develop --debug-mode"
},
"build": {
"productName": "Zero Quake",
"files": [
"!CODE_OF_CONDUCT.md",
"!CONTRIBUTING.md",
"!SECURITY.md",
"!PULL_REQUEST_TEMPLATE.md",
"!tools/*",
"!eslint.config.js"
],
"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": {
"@eslint/js": "^10.0.1",
"electron": "^40.8.0",
"electron-builder": "^26.8.1",
"globals": "^17.4.0",
"eslint": "^10.0.2",
"prettier": "^3.8.1"
},
"dependencies": {
"@turf/turf": "^7.3.4",
"electron-store": "^11.0.2",
"jsdom": "^28.1.0",
"maplibre-gl": "^5.19.0",
"path": "^0.12.7",
"pmtiles": "^4.4.0",
"websocket": "^1.0.35"
}
}