-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
78 lines (78 loc) · 2.21 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
{
"name": "ugl",
"version": "0.3.8",
"description": "UltimateGameLauncher",
"main": "app/js/main.js",
"scripts": {
"startgw": "gulp watch",
"start": "electron .",
"scss": "npm run scss-dev && node-sass --importer=node_modules/node-sass-tilde-importer --watch assets/scss -o assets/css compressed",
"scss-dev": "node-sass --importer=node_modules/node-sass-tilde-importer assets/scss -o assets/css compressed",
"pack": "electron-builder --dir",
"dist": "electron-builder --win",
"gulp-dist": "gulp release"
},
"author": "Lars Zocher",
"homepage": "https://ugl.seemslegit.me",
"license": "MIT",
"dependencies": {
"@babel/plugin-proposal-class-properties": "^7.7.4",
"@babel/runtime": "^7.7.4",
"electron-updater": "^4.1.2",
"png-to-ico": "^2.0.6",
"process-exists": "^4.0.0",
"react": "^16.12.0",
"react-dom": "^16.12.0",
"request": "^2.88.0",
"simple-vdf": "^1.1.1",
"steamauth": "^0.1.5",
"windows-shortcuts": "^0.1.6",
"winreg": "^1.2.4",
"xmlhttprequest": "^1.8.0"
},
"devDependencies": {
"@babel/core": "^7.7.4",
"@babel/plugin-transform-runtime": "^7.7.4",
"@babel/preset-env": "^7.7.4",
"@babel/preset-react": "^7.7.4",
"electron": "^5.0.3",
"electron-builder": "^21.2.0",
"electron-connect": "^0.6.3",
"electron-packager": "^13.1.1",
"gulp": "^4.0.2",
"gulp-babel": "^8.0.0",
"gulp-clean-css": "^4.2.0",
"gulp-concat": "^2.6.1",
"gulp-livereload": "^4.0.2",
"node-sass": "^4.12.0",
"node-sass-tilde-importer": "^1.0.2"
},
"build": {
"publish": [
{
"provider": "generic",
"url": "https://ugl.seemslegit.me/update/"
}
],
"nsis": {
"perMachine": false,
"createDesktopShortcut": true,
"installerIcon": "build/icon2.ico",
"uninstallerIcon": "build/icon2.ico",
"uninstallDisplayName": "Ultimate Game Launcher"
},
"win": {
"target": "nsis",
"icon": "build/icon2.ico"
},
"productName": "Ultimate Game Launcher",
"appId": "com.github.BubbleEgg.UltimateGameLauncher-2",
"mac": {
"category": "public.app-category.utilities",
"target": [
"zip",
"dmg"
]
}
}
}