-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.21 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 1.21 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
{
"name": "linear-linux",
"version": "0.2.3",
"description": "Linux support for linear.app",
"main": "index.js",
"scripts": {
"start": "CHROME_DEVEL_SANDBOX=${CHROME_DEVEL_SANDBOX:-/opt/linear-linux-0.2.1/squashfs-root/chrome-sandbox} ELECTRON_DISABLE_SANDBOX=1 npx electron index.js",
"build": "electron-builder --linux AppImage deb"
},
"repository": {
"type": "git",
"url": "git+https://github.com/kleo-dev/linear-linux.git"
},
"keywords": [],
"author": "Linear Linux <linear@example.com>",
"license": "ISC",
"bugs": {
"url": "https://github.com/kleo-dev/linear-linux/issues"
},
"homepage": "https://github.com/kleo-dev/linear-linux#readme",
"build": {
"appId": "app.linear.linux",
"productName": "Linear",
"files": [
"index.js",
"package.json",
"assets/**/*"
],
"linux": {
"target": [
"AppImage",
"deb"
],
"category": "Utility",
"icon": "assets/linear-app-icon.png",
"afterInstall": "build/after-install.sh"
},
"extraResources": [
{
"from": "assets",
"to": "assets"
}
]
},
"devDependencies": {
"electron": "^33.2.1",
"electron-builder": "^25.1.8"
}
}