-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.28 KB
/
Copy pathpackage.json
File metadata and controls
50 lines (50 loc) · 1.28 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
{
"name": "copilot-desktop",
"title": "Copilot Desktop",
"productName": "Copilot Desktop",
"description": "Unofficial Web app for Microsoft Copilot providing the desktop user experience you would expect on Ubuntu or any other Linux desktop.",
"version": "0.1.2",
"main": "src/main.js",
"type": "module",
"scripts": {
"start": "electron .",
"dist": "electron-builder --linux AppImage"
},
"build": {
"appId": "com.github.levicm.copilotdesktop",
"linux": {
"target": "AppImage",
"icon": "assets/icon.png",
"category": "Utility",
"artifactName": "${productName}-${version}.AppImage",
"publish": ["github"]
},
"extraFiles": [
"assets/${name}.desktop"
],
"publish": {
"provider": "github",
"owner": "levicm",
"repo": "copilot-desktop"
}
},
"homepage": "https://github.com/levicm/copilot-desktop",
"repository": "https://github.com/levicm/copilot-desktop.git",
"keywords": [
"Electron",
"Copilot",
"copilot-desktop",
"Linux",
"desktopApplication"
],
"author": "Levi Mota",
"license": "MIT",
"devDependencies": {
"electron": "^33.2.0",
"electron-builder": "^25.1.8"
},
"dependencies": {
"electron-context-menu": "^4.0.4",
"flatpak-bundler": "^0.1.3"
}
}