-
-
Notifications
You must be signed in to change notification settings - Fork 13
Expand file tree
/
Copy pathpackage.json
More file actions
26 lines (26 loc) · 881 Bytes
/
Copy pathpackage.json
File metadata and controls
26 lines (26 loc) · 881 Bytes
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
{
"name": "phoenix-code-electron-shell",
"identifier": "io.phcode.dev",
"stage": "dev",
"trustedElectronDomains": [
"phtauri://localhost/",
"https://phcode.dev/"
],
"version": "5.1.8",
"productName": "Phoenix Code Experimental Build",
"desktopName": "phoenix-code-experimental-build",
"description": "Phoenix Code Experimental Build",
"main": "main.js",
"scripts": {
"clean:appimage": "shx rm -rf dist/*.AppImage",
"build:appimage": "npm run clean:appimage && electron-builder --linux AppImage --publish never && node renameBin.js",
"build:appimageForTest": "npm run clean:appimage && electron-builder --linux AppImage --publish never && shx mv dist/*.AppImage dist/phoenix-test-runner.appimage"
},
"dependencies": {
"keytar": "^7.9.0"
},
"devDependencies": {
"electron": "^41.5.1",
"electron-builder": "^24.13.3"
}
}