-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
80 lines (80 loc) · 1.82 KB
/
Copy pathpackage.json
File metadata and controls
80 lines (80 loc) · 1.82 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
79
80
{
"name": "dmg-darkroom",
"version": "0.1.0",
"description": "DMG DarkRoom — Game Boy Camera companion app. Load .sav files, manage photos, export with proper palettes.",
"main": "main.js",
"scripts": {
"start": "electron .",
"build:mac": "electron-builder --mac",
"build:win": "electron-builder --win",
"build:linux": "electron-builder --linux",
"sync:web": "bash tools/sync-web.sh",
"test": "node --test test/*.test.js",
"test:e2e": "playwright test"
},
"dependencies": {
"omggif": "^1.0.10"
},
"devDependencies": {
"@playwright/test": "^1.61.1",
"electron": "^42.5.2",
"electron-builder": "^26.0.12"
},
"build": {
"appId": "com.clickysteve.dmgdarkroom",
"productName": "DMG DarkRoom",
"files": [
"main.js",
"preload.js",
"src/**/*",
"renderer/**/*",
"build/**/*"
],
"mac": {
"category": "public.app-category.photography",
"icon": "build/icon.icns",
"identity": "Developer ID Application: Stephen McLeod Blythe (2N9AC8M66C)",
"hardenedRuntime": true,
"gatekeeperAssess": false,
"entitlements": "build/entitlements.mac.plist",
"entitlementsInherit": "build/entitlements.mac.plist",
"target": [
{
"target": "dmg",
"arch": [
"arm64",
"x86_64"
]
}
]
},
"win": {
"target": [
{
"target": "nsis",
"arch": [
"x64"
]
}
]
},
"linux": {
"target": [
{
"target": "AppImage",
"arch": [
"x64"
]
}
]
},
"dmg": {
"title": "DMG DarkRoom",
"background": "build/dmg-background.png",
"window": {
"width": 540,
"height": 380
}
}
}
}