This repository was archived by the owner on Feb 19, 2026. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
115 lines (115 loc) · 3.11 KB
/
package.json
File metadata and controls
115 lines (115 loc) · 3.11 KB
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
{
"name": "steam-scanner",
"version": "0.3.0",
"description": "Automatically add your game to you Steam library",
"main": "scanner.js",
"scripts": {
"postinstall": "./node_modules/.bin/electron-rebuild",
"dev": "webpack --mode=development --watch",
"build": "npm run clean && webpack --mode=production && electron-builder",
"electron": "electron dist/scanner.js",
"clean": "node ./tools/clean.js",
"test": "mocha -r ts-node/register test/scripts.ts",
"doc": "typedoc --out ./doc",
"release": "node ./tools/release.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Ciriak/Steam-Scanner.git"
},
"keywords": [
"steam",
"electron",
"game",
"sync",
"uplay",
"origin"
],
"author": "Cyriaque DELAUNAY",
"license": "ISC",
"bugs": {
"url": "https://github.com/Ciriak/Steam-Scanner/issues"
},
"homepage": "https://github.com/Ciriak/Steam-Scanner#readme",
"devDependencies": {
"@types/auto-launch": "^5.0.1",
"@types/chai": "^4.2.11",
"@types/fs-extra": "^8.1.0",
"@types/lodash": "^4.14.150",
"@types/mocha": "^7.0.2",
"@types/node-notifier": "^6.0.1",
"@types/recursive-readdir": "^2.2.0",
"axios": "^0.19.2",
"clean-webpack-plugin": "^3.0.0",
"copy-webpack-plugin": "^5.1.1",
"css-loader": "^3.5.2",
"electron": "^8.2.3",
"electron-builder": "^22.5.1",
"electron-rebuild": "^1.10.1",
"file-loader": "^6.0.0",
"html-webpack-plugin": "^4.2.0",
"mime": "^2.4.4",
"mocha": "^7.1.1",
"nyc": "^15.0.1",
"sass": "^1.26.3",
"sass-loader": "^8.0.2",
"style-loader": "^1.1.4",
"ts-loader": "^7.0.1",
"typescript": "^3.8.3",
"url-loader": "^4.1.0",
"webpack": "^4.42.1",
"webpack-cli": "^3.3.11"
},
"dependencies": {
"@types/react": "^16.9.34",
"@types/react-dom": "^16.9.7",
"@types/rimraf": "^3.0.0",
"bootstrap": "^4.4.1",
"colors": "^1.4.0",
"electron-is-dev": "^1.2.0",
"electron-log": "^4.1.2",
"electron-updater": "^4.2.5",
"extract-file-icon": "^0.3.2",
"fs-extra": "^9.0.0",
"lodash": "^4.17.15",
"protobufjs": "^6.9.0",
"react": "^16.13.1",
"react-bootstrap": "^1.0.1",
"react-dom": "^16.13.1",
"react-hook-form": "^5.6.3",
"recursive-readdir": "^2.2.2",
"rimraf": "^3.0.2",
"steam-shortcut-editor": "^3.1.1"
},
"build": {
"appId": "com.ciriak.steamscanner",
"productName": "steam-scanner",
"npmRebuild": true,
"directories": {
"app": "dist",
"output": "build"
},
"win": {
"target": "nsis",
"publish": "github",
"icon": "src/assets/scanner.ico"
},
"nsis": {
"oneClick": true,
"artifactName": "${productName}-setup-${version}.${ext}",
"installerIcon": "src/assets/scanner.ico",
"differentialPackage": false,
"deleteAppDataOnUninstall": true,
"warningsAsErrors": false
},
"asar": {
"smartUnpack": false
},
"appImage": {
"publish": false,
"category": "Development",
"artifactName": "${productName}-${version}.${ext}"
},
"publish": true
}
}