-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 2.01 KB
/
Copy pathpackage.json
File metadata and controls
60 lines (60 loc) · 2.01 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
{
"name": "gripi-desktop",
"version": "0.1.0",
"private": true,
"description": "Thin Electron shell for Gripi.",
"author": "Gripi contributors",
"main": "electron/main.js",
"desktopName": "gripi",
"engines": {
"node": ">=22.12.0"
},
"scripts": {
"desktop": "electron .",
"desktop:check": "node --test electron/*.test.js && node --check electron/main.js && node --check electron/preload.js && node --check electron/gateway_preload.js && node --check electron/shell.js",
"frontend:check": "node --test test/frontend*.test.mjs test/demo.test.mjs && for file in public/assets/*.js demo/*.js; do node --check \"$file\"; done",
"pi-extension:check": "node --test test/pi_extension.test.mjs",
"scripts:check": "node --test test/scripts.test.mjs",
"fake-pi:check": "node --test e2e/support/*.test.mjs && node --check e2e/support/fake_pi.mjs",
"test:e2e:support": "npm run fake-pi:check",
"test:e2e": "npm run test:e2e:support && node e2e/support/managed_server.mjs",
"test:e2e:external": "node e2e/support/external.mjs",
"test:e2e:real": "node e2e/support/managed_server.mjs --real-pi --project=real-pi",
"dist": "electron-builder",
"dist:linux": "electron-builder --linux",
"dist:mac": "electron-builder --mac"
},
"devDependencies": {
"@playwright/test": "^1.61.1",
"@xterm/xterm": "6.0.0",
"electron": "^43.0.0",
"electron-builder": "^26.15.3"
},
"build": {
"appId": "dev.gripi.desktop",
"productName": "Gripi",
"artifactName": "${productName}-${version}-${os}-${arch}.${ext}",
"files": [
"electron/**/*",
"package.json"
],
"mac": {
"category": "public.app-category.developer-tools",
"icon": "electron/assets/icon.icns",
"identity": "-",
"hardenedRuntime": false,
"target": [
"dmg",
"zip"
]
},
"linux": {
"category": "Development",
"icon": "electron/assets/icons",
"syncDesktopName": true,
"target": [
"AppImage"
]
}
}
}