-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json.linux
69 lines (69 loc) · 1.5 KB
/
package.json.linux
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
{
"name": "ribbons-electron",
"productName": "Ribbons screensaver",
"description": "Famous Ribbons screensaver made with js and Electron wrapped for multi platform support",
"keywords": [
"windows",
"ribbons",
"screensaver",
"electron"
],
"icon": "icon.png",
"main": "./main.js",
"version": "0.2.1-alpha",
"author": "Yuri Samoilov <[email protected]>",
"homepage": "https://github.com/drlight17/ribbons-electron",
"build": {
"appId": "com.electron.ribbons-electron",
"productName": "Ribbons screensaver",
"asar": true,
"linux": {
"icon": "icon.icns",
"target": [
{
"target": "AppImage",
"arch": [
"x64"
]
},
{
"target": "tar.gz",
"arch": [
"x64"
]
},
{
"target": "deb",
"arch": [
"x64"
]
},
{
"target": "rpm",
"arch": [
"x64"
]
}
],
"asarUnpack": "./icon.png"
}
},
"scripts": {
"dist": "electron-builder",
"start": "electron ."
},
"dependencies": {
"@electron/packager": "latest",
"desktop-idle": "^1.3.0",
"electron-fetch": "^1.9.1",
"active-win": "^8.1.0",
"electron-prompt": "latest",
"electron-store": "^8.2.0"
},
"devDependencies": {
"@electron/rebuild": "^3.2.9",
"electron": "^22.3.27",
"electron-builder": "^24.13.3",
"electron-rebuild": "^3.2.9"
}
}