-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
141 lines (141 loc) · 3.17 KB
/
Copy pathpackage.json
File metadata and controls
141 lines (141 loc) · 3.17 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
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
{
"name": "panebox",
"productName": "Panebox",
"version": "2.2.3",
"description": "A small, private, open-source desktop deck for your web apps — AI tools, chat, mail and more in one window.",
"main": "main.js",
"license": "MIT",
"author": {
"name": "Panebox contributors"
},
"homepage": "https://github.com/viny4/panebox",
"repository": {
"type": "git",
"url": "git+https://github.com/viny4/panebox.git"
},
"bugs": {
"url": "https://github.com/viny4/panebox/issues"
},
"keywords": [
"electron",
"desktop",
"workspace",
"web-apps",
"ai",
"chatgpt",
"claude",
"privacy",
"open-source"
],
"scripts": {
"start": "electron .",
"icons": "node tools/make-icons.js",
"dist": "electron-builder",
"dist:mac": "electron-builder --mac",
"dist:win": "electron-builder --win",
"dist:linux": "electron-builder --linux",
"pack": "electron-builder --dir",
"test": "node --test \"test/**/*.test.js\"",
"icons:check": "node tools/make-icons.js --check",
"brand-icons": "node tools/make-brand-icons.js"
},
"devDependencies": {
"electron": "^43.2.0",
"electron-builder": "^25.1.8",
"simple-icons": "^16.27.1"
},
"build": {
"appId": "io.github.panebox",
"productName": "Panebox",
"copyright": "Copyright © Panebox contributors",
"directories": {
"output": "release",
"buildResources": "assets"
},
"files": [
"main.js",
"preload.js",
"webview-preload.js",
"renderer.js",
"catalog.js",
"icons.js",
"index.html",
"styles.css",
"lib/**/*",
"assets/**/*",
"!**/*.map"
],
"mac": {
"category": "public.app-category.productivity",
"icon": "assets/icon.png",
"target": [
{
"target": "dmg",
"arch": [
"arm64",
"x64"
]
},
{
"target": "zip",
"arch": [
"arm64",
"x64"
]
}
],
"darkModeSupport": true,
"extendInfo": {
"NSMicrophoneUsageDescription": "Required for voice and video calls in your web apps.",
"NSCameraUsageDescription": "Required for video calls in your web apps."
}
},
"dmg": {
"artifactName": "${productName}-${version}-${arch}.${ext}"
},
"win": {
"icon": "assets/icon.png",
"target": [
{
"target": "nsis",
"arch": [
"x64",
"arm64"
]
},
{
"target": "portable",
"arch": [
"x64"
]
}
]
},
"nsis": {
"oneClick": false,
"allowToChangeInstallationDirectory": true
},
"linux": {
"icon": "assets/icon.png",
"category": "Network",
"target": [
"AppImage",
"deb",
"rpm"
],
"maintainer": "Panebox contributors"
},
"publish": [
{
"provider": "github",
"owner": "viny4",
"repo": "panebox",
"releaseType": "draft"
}
],
"afterPack": "./tools/after-pack.js"
},
"dependencies": {
"electron-updater": "^6.8.9"
}
}