|
11 | 11 | "author": "Kris Siepert", |
12 | 12 | "private": true, |
13 | 13 | "license": "GPL-2.0", |
14 | | - "version": "0.3.10", |
| 14 | + "version": "0.3.11", |
15 | 15 | "main": "src/index.js", |
16 | 16 | "scripts": { |
17 | | - "start": "electron-forge start", |
18 | | - "package": "electron-forge package", |
19 | | - "make": "electron-forge make", |
20 | | - "publish": "electron-forge publish", |
21 | | - "publish-docker": "docker run --rm -it -e \"GITHUB_TOKEN=$GITHUB_TOKEN\" -v $(pwd):/code kriskbx/gtt-taskbar-builder ./build.sh", |
22 | 17 | "lint": "eslint src", |
23 | 18 | "dev": "NODE_ENV=development webpack --progress --hide-modules --config=node_modules/laravel-mix/setup/webpack.config.js", |
24 | 19 | "watch": "NODE_ENV=development webpack --watch --progress --hide-modules --config=node_modules/laravel-mix/setup/webpack.config.js", |
25 | 20 | "hot": "NODE_ENV=development webpack-dev-server --inline --hot --config=node_modules/laravel-mix/setup/webpack.config.js", |
26 | 21 | "production": "NODE_ENV=production webpack --progress --hide-modules --config=node_modules/laravel-mix/setup/webpack.config.js", |
27 | | - "production-windows": "node node_modules/cross-env/dist/bin/cross-env.js NODE_ENV=production node_modules/webpack/bin/webpack.js --progress --hide-modules --config=node_modules/laravel-mix/setup/webpack.config.js" |
| 22 | + "production-windows": "node node_modules/cross-env/dist/bin/cross-env.js NODE_ENV=production node_modules/webpack/bin/webpack.js --progress --hide-modules --config=node_modules/laravel-mix/setup/webpack.config.js", |
| 23 | + "pack": "electron-builder --dir", |
| 24 | + "dist": "electron-builder" |
28 | 25 | }, |
29 | | - "config": { |
30 | | - "forge": { |
31 | | - "publish_targets": { |
32 | | - "win32": [ |
33 | | - "github" |
34 | | - ], |
35 | | - "darwin": [ |
36 | | - "github" |
37 | | - ], |
38 | | - "linux": [ |
39 | | - "github" |
40 | | - ] |
41 | | - }, |
42 | | - "make_targets": { |
43 | | - "win32": [ |
44 | | - "squirrel" |
45 | | - ], |
46 | | - "darwin": [ |
47 | | - "zip" |
48 | | - ], |
49 | | - "linux": [ |
50 | | - "deb", |
51 | | - "rpm" |
52 | | - ] |
53 | | - }, |
54 | | - "electronPackagerConfig": { |
55 | | - "ignore": [ |
56 | | - ".idea", |
57 | | - "resources", |
58 | | - "out", |
59 | | - ".tresorit", |
60 | | - "appveyor.yml", |
61 | | - "build.sh", |
62 | | - "Dockerfile", |
63 | | - "documentation.md", |
64 | | - "Icon", |
65 | | - "LICENSE", |
66 | | - "mix-manifest.json", |
67 | | - "readme.md", |
68 | | - "webpack.mix.js", |
69 | | - "yarn.lock", |
70 | | - "yarn-error.log" |
71 | | - ], |
72 | | - "packageManager": "yarn", |
73 | | - "icon": "./resources/images/icon/icon.png" |
74 | | - }, |
75 | | - "electronWinstallerConfig": { |
76 | | - "setupIcon": "./resources/images/icon/icon.ico" |
77 | | - }, |
78 | | - "electronInstallerDebian": { |
79 | | - "depends": [ |
80 | | - "libappindicator1" |
81 | | - ], |
82 | | - "categories": [ |
83 | | - "Utility" |
84 | | - ], |
85 | | - "icon": "./resources/images/icon/icon.png" |
86 | | - }, |
87 | | - "electronInstallerRedhat": { |
88 | | - "requires": [ |
89 | | - "lsb", |
90 | | - "libappindicator" |
91 | | - ], |
92 | | - "compressionLevel": 9, |
93 | | - "categories": [ |
94 | | - "Utility" |
95 | | - ] |
96 | | - }, |
97 | | - "electronInstallerSnap": { |
98 | | - "grade": "stable", |
99 | | - "confinement": "strict", |
100 | | - "icon": "./resources/images/icon/icon.png" |
101 | | - }, |
102 | | - "snapStore": { |
103 | | - "release": "stable" |
104 | | - }, |
105 | | - "github_repository": { |
106 | | - "owner": "kriskbx", |
107 | | - "name": "gitlab-time-tracker-taskbar", |
108 | | - "draft": false, |
109 | | - "prerelease": true |
110 | | - }, |
111 | | - "windowsStoreConfig": { |
112 | | - "packageName": "gtt-taskbar", |
113 | | - "packageDisplayName": "gitlab time tracker taskbar", |
114 | | - "packageVersion": "<%= version %>.0", |
115 | | - "publisher": "CN=F0C20719-E0F4-4F1A-99EB-2C25503A0622", |
116 | | - "devCert": "", |
117 | | - "deploy": false |
118 | | - } |
119 | | - } |
| 26 | + "build": { |
| 27 | + "appId": "com.tobyn.gtt-taskbar" |
120 | 28 | }, |
| 29 | + "postinstall": "electron-builder install-app-deps", |
121 | 30 | "dependencies": { |
122 | 31 | "babel-preset-es2016": "^6.24.1", |
123 | 32 | "chokidar": "^2.0.0", |
124 | | - "electron": "2.0.8", |
125 | 33 | "electron-compile": "^6.4.2", |
126 | 34 | "electron-log": "^3.0.0-beta4", |
127 | 35 | "electron-squirrel-startup": "^1.0.0", |
|
135 | 43 | "babel-preset-env": "^1.6.1", |
136 | 44 | "babel-preset-react": "^6.24.1", |
137 | 45 | "cross-env": "^5.2.0", |
138 | | - "electron-forge": "^5.0.0", |
| 46 | + "electron": "2.0.8", |
| 47 | + "electron-builder": "^22.5.1", |
139 | 48 | "electron-prebuilt-compile": "1.7.11", |
140 | 49 | "eslint": "^3", |
141 | 50 | "eslint-config-airbnb": "^15", |
|
0 commit comments