-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
71 lines (71 loc) · 1.63 KB
/
package.json
File metadata and controls
71 lines (71 loc) · 1.63 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
{
"name": "hexroll-backpack",
"version": "0.9.15",
"description": "Hexroll 2E Offline Viewer",
"author": "Ithai Levi <ithai@pendicepaper.com>",
"email": "ithai@pendicepaper.com",
"main": "src/index.js",
"license": "AGPL-3.0-only",
"devDependencies": {
"dmg-builder": "^24.6.3",
"electron": "31.3.1",
"electron-builder": "^24.13.3",
"@electron/notarize": "^2.3.2"
},
"scripts": {
"start": "electron .",
"rebuild": "electron-rebuild -f -w better-sqlite3",
"postinstall": "electron-builder install-app-deps"
},
"build": {
"appId": "com.hexroll.app",
"productName": "HexrollBackpack",
"directories": {
"output": "dist/${platform}"
},
"buildDependenciesFromSource": true,
"win": {
"signingHashAlgorithms": [
"sha256"
],
"sign": "./sign.js",
"icon": "./assets/icon.ico"
},
"mac": {
"target": [
{
"target": "dmg",
"arch": "universal"
}
],
"hardenedRuntime": true,
"entitlements": "build/entitlements.mac.plist",
"entitlementsInherit": "build/entitlements.mac.plist",
"executableName": "HexrollBackpack",
"icon": "./assets/icon.icns"
},
"linux": {
"icon": "./assets/icon.icns"
},
"afterSign": "notarize.js"
},
"dependencies": {
"better-sqlite3": "11.1.2"
},
"resolutions": {
"wrap-ansi": "7.0.0",
"string-width": "4.2.0",
"node-abi": "3.65.0"
},
"overrides": {
"prebuild-install": {
"node-abi": "3.65.0"
},
"prebuild": {
"node-abi": "3.65.0"
},
"robotjs": {
"node-abi": "3.65.0"
}
}
}