forked from SteamGridDB/steamgriddb-manager
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
126 lines (126 loc) · 3.52 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
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
{
"name": "steamgriddb-manager",
"version": "0.4.2",
"description": "Easily find and download new grid images for your Steam games.",
"main": "main.js",
"author": "SteamGridDB.com",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/steamgriddb/steamgriddb-manager.git"
},
"scripts": {
"start": "electron .",
"build": "webpack --mode production && electron-builder",
"run": "webpack --mode development && electron .",
"watch": "concurrently \"webpack --mode development --watch\" \"electron .\"",
"pack": "electron-builder --dir",
"publish": "webpack --mode production && electron-builder --publish always",
"postinstall": "electron-builder install-app-deps"
},
"build": {
"appId": "com.steamgriddb.manager",
"productName": "SteamGridDB Manager",
"copyright": "SteamGridDB.com",
"compression": "maximum",
"directories": {
"buildResources": "assets/icons"
},
"extraResources": [
{
"from": "assets/VisualElements",
"to": "VisualElements"
}
],
"extraFiles": [
{
"from": "LauncherAutoClose.ps1",
"to": "."
},
{
"from": "BnetHelper.ps1",
"to": "."
},
"SteamGridDB Manager.VisualElementsManifest.xml"
],
"win": {
"target": [
"nsis",
"7z"
]
},
"nsis": {
"oneClick": false,
"allowToChangeInstallationDirectory": true
},
"publish": {
"provider": "s3",
"region": "us-east-1",
"path": "/manager",
"bucket": "steamgriddb"
}
},
"devDependencies": {
"@babel/cli": "^7.12.10",
"@babel/core": "^7.12.10",
"@babel/plugin-proposal-class-properties": "^7.12.1",
"@babel/plugin-proposal-decorators": "^7.12.12",
"@babel/plugin-transform-runtime": "^7.12.10",
"@babel/preset-env": "^7.12.11",
"@babel/preset-react": "^7.12.10",
"babel-loader": "^8.2.2",
"concurrently": "^5.3.0",
"css-loader": "^5.0.1",
"electron": "^6.1.12",
"electron-builder": "^21.2.0",
"electron-builder-squirrel-windows": "^21.2.0",
"electron-packager": "^14.2.1",
"eslint": "^7.17.0",
"eslint-config-airbnb": "^18.2.1",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-react": "^7.22.0",
"eslint-plugin-react-hooks": "^4.2.0",
"file-loader": "^4.3.0",
"steam-id-convertor": "^1.0.1",
"style-loader": "^1.3.0",
"webpack": "^4.44.2",
"webpack-cli": "^3.3.12"
},
"dependencies": {
"@node-steam/vdf": "^2.1.0",
"blizzard-product-parser": "^1.0.1",
"cheerio": "^1.0.0-rc.5",
"chokidar": "^3.5.0",
"crc": "^3.8.0",
"electron-log": "^3.0.7",
"electron-store": "^5.2.0",
"electron-updater": "^4.3.5",
"fuse.js": "^3.6.1",
"iconv-lite": "^0.6.2",
"js-yaml": "^4.0.0",
"jsonminify": "^0.4.1",
"lodash": "^4.17.20",
"metrohash": "^2.6.0",
"node-powershell": "^4.0.0",
"promise-reflect": "^1.1.0",
"promise-settle": "^0.3.0",
"prop-types": "^15.7.2",
"pubsub-js": "^1.9.2",
"query-string": "^6.13.8",
"react": "^16.14.0",
"react-desktop": "^0.3.9",
"react-dom": "^16.14.0",
"react-lazyload": "^2.6.9",
"react-motion": "^0.5.2",
"react-router-dom": "^5.2.0",
"react-transition-group": "1.2.1",
"react-uwp": "^1.3.3",
"steam-categories": "^1.1.3",
"steam-shortcut-editor": "^3.1.1",
"steamgriddb": "^1.3.1",
"steamid": "^1.1.3",
"winreg": "^1.2.4",
"xml-js": "^1.6.11"
}
}