-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
79 lines (79 loc) · 1.93 KB
/
package.json
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
{
"name": "reddit-wallpaper-app",
"version": "1.0.3",
"author": "norbornen <example@example.com>",
"license": "Apache-2.0",
"keywords": [
"reddit",
"wallpaper"
],
"repository": "https://github.com/norbornen/reddit-nsfw-wallpaper",
"main": "app/dist/main/index.js",
"types": "app/dist/main/index.d.ts",
"private": true,
"scripts": {
"start": "electron .",
"rebuild": "electron-rebuild",
"build": "yarn workspace main build",
"build:app": "yarn electron-build --dir",
"build:all": "env-cmd yarn electron-build build -mwl -p always",
"build:mac": "yarn electron-build build --mac -p never",
"build:linux": "yarn electron-build build --linux -p never",
"build:windows": "yarn electron-build build --windows --x64 -p never",
"electron-build": "yarn build && electron-rebuild && electron-builder"
},
"devDependencies": {
"electron": "16",
"electron-builder": "^23.0.3",
"electron-rebuild": "^3.2.7",
"env-cmd": "^10.1.0"
},
"dependencies": {
"class-transformer": "^0.5.1",
"cycled": "1",
"electron-log": "^4.4.7",
"get-stream": "^6.0.1",
"http-errors": "^2.0.0",
"reflect-metadata": "^0.1.13",
"tslib": "^2.3.1",
"wallpaper": "5"
},
"workspaces": [
"main"
],
"build": {
"appId": "io.github.norbornen.reddit-wallpaper",
"productName": "reddit-wallpaper",
"artifactName": "${productName}.${ext}",
"asar": true,
"directories": {
"output": "release"
},
"files": [
"app/**/*"
],
"mac": {
"category": "public.app-category.utilities",
"icon": "resources/icons/icon.icns"
},
"win": {
"target": [
"portable"
]
},
"linux": {
"target": [
"deb",
"AppImage"
],
"category": "Settings"
},
"publish": [
{
"provider": "github",
"owner": "norbornen",
"repo": "reddit-nsfw-wallpaper"
}
]
}
}