This repository has been archived by the owner on Sep 3, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
54 lines (54 loc) · 1.46 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
{
"name": "VoidView",
"version": "1.4.0",
"description": "Stare into the endless void of your image collection.",
"main": "main.js",
"scripts": {
"start": "electron-webpack dev",
"compile": "electron-webpack",
"lint": "eslint ./src",
"dist-mac": "npm run compile && node scripts.js dist mac",
"dist-win": "npm run compile && node scripts.js dist win"
},
"repository": "https://gitlab.com/eswat/voidview",
"author": "Philip Karpiak <[email protected]>",
"devDependencies": {
"css-loader": "^3.5.3",
"electron": "^8.2.5",
"electron-builder": "^22.6.0",
"electron-webpack": "^2.8.2",
"eslint": "^7.0.0",
"eslint-config-standard": "^14.1.1",
"eslint-plugin-import": "^2.20.2",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.1",
"stylelint": "^13.3.3",
"stylelint-config-standard": "^20.0.0",
"webpack": "^4.43.0"
},
"electronWebpack": {
"title": "VoidView",
"main": {
"webpackConfig": "webpack.main.js"
},
"renderer": {
"webpackConfig": "webpack.renderer.js"
}
},
"build": {
"appId": "voidview",
"mac": {
"darkModeSupport": true,
"gatekeeperAssess": false
}
},
"dependencies": {
"clusterize.js": "^0.18.1",
"electron-store": "^5.1.1",
"electron-window-state": "^5.0.3",
"element-ready": "^4.1.1",
"fast-shuffle": "^3.0.0",
"source-map-support": "^0.5.19"
}
}