-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
93 lines (93 loc) · 3.15 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
{
"name": "vapor-authenticator",
"description": "Desktop Authenticator for Steam for players, traders and gamers to be able to utilise, facilitate and automate Steam from their desktop",
"version": "0.1.5",
"author": "Mengh.",
"license": "MIT",
"main": "build/main.js",
"devDependencies": {
"@babel/core": "^7.12.9",
"@babel/preset-env": "^7.12.7",
"@babel/preset-react": "^7.12.7",
"@babel/preset-typescript": "^7.12.7",
"@types/react": "^17.0.0",
"@types/react-dom": "^17.0.0",
"@typescript-eslint/eslint-plugin": "^4.8.2",
"@typescript-eslint/parser": "^4.8.2",
"autoprefixer": "^10.0.4",
"babel-loader": "^8.2.2",
"concurrently": "^5.3.0",
"css-loader": "^5.0.1",
"electron": "11.0.3",
"electron-builder": "^22.9.1",
"eslint": "^7.14.0",
"file-loader": "^6.2.0",
"icon-gen": "^2.1.0",
"postcss": "^8.4.5",
"postcss-loader": "^6.2.1",
"run-script-os": "^1.1.6",
"style-loader": "^2.0.0",
"tailwindcss": "^2.0.1",
"typescript": "^4.1.2",
"webpack": "^5.9.0",
"webpack-cli": "^4.2.0"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"clean": "rm -rf build/",
"lint": "eslint -c .eslintrc ./src",
"build:electron": "tsc",
"build:react": "webpack --config webpack.common.js",
"build": "npm run build:electron && npm run build:react",
"watch:electron": "tsc --watch",
"watch:react": "webpack --config webpack.common.js --watch",
"watch": "concurrently \"npm run watch:react\" \"npm run bootup\"",
"start": "run-script-os",
"start:darwin:linux": "export NODE_ENV=development&& npm run build && electron .",
"start:win32": "SET NODE_ENV=development&& npm run build && electron .",
"pre-commit": "npm run lint && npm run build",
"generate-icons": "mkdir -p icons/ && icon-gen -i ./icon.svg -o icons/ --icns --icns-name icon --ico --ico-name icon --favicon",
"package": "electron-builder --dir",
"make:macosx": "electron-builder -m",
"make:linux": "electron-builder -l",
"make:windows": "electron-builder -w",
"make": "npm run make:macosx && npm run make:linux && npm run make:windows"
},
"repository": {
"type": "git",
"url": "git+https://github.com/HilliamT/vapor-authenticator.git"
},
"bugs": {
"url": "https://github.com/HilliamT/vapor-authenticator/issues"
},
"homepage": "https://github.com/HilliamT/vapor-authenticator#readme",
"dependencies": {
"@fortawesome/fontawesome-svg-core": "^1.2.32",
"@fortawesome/free-solid-svg-icons": "^5.15.1",
"@fortawesome/react-fontawesome": "^0.1.13",
"electron-store": "^6.0.1",
"react": "^17.0.1",
"react-dom": "^17.0.1",
"react-router-dom": "^5.2.0",
"steam-totp": "^1.5.0",
"steam-tradeoffer-manager": "^2.10.2",
"steam-user": "^4.18.0",
"steamcommunity": "^3.42.0",
"steamid": "^1.1.3"
},
"build": {
"productName": "Vapor",
"directories": {
"buildResources": "icons",
"output": "out"
},
"mac": {
"category": "public.app-category.productivity"
},
"win": {},
"linux": {
"icon": "icons/icon.icns",
"category": "Utility"
}
}
}