-
-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathpackage.json
66 lines (66 loc) · 1.62 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
{
"name": "csgo-checker",
"version": "1.4.4",
"description": "Check CS:GO accounts for bans/cooldowns/wins/ranks",
"main": "main.js",
"scripts": {
"start": "electron .",
"build": "electron-builder --win --linux",
"build:windows": "electron-builder --win",
"build:linux": "electron-builder --linux",
"publish": "electron-builder --win --linux --publish always"
},
"author": "dumbasPL",
"license": "GPL-3.0-or-later",
"dependencies": {
"axios": "^1.4.0",
"csgo-friendcode": "^3.0.3",
"electron-is-dev": "^2.0.0",
"electron-reload": "^1.5.0",
"electron-updater": "^6.1.1",
"fast-deep-equal": "^3.1.3",
"pbkdf2": "^3.1.2",
"protobufjs": "^6.11.4",
"showdown": "^2.1.0",
"simple-json-db": "^2.0.0",
"steam-totp": "^2.1.2",
"steam-user": "^4.29.1"
},
"devDependencies": {
"electron": "^25.8.4",
"electron-builder": "^24.13.3"
},
"build": {
"appId": "cc.nezu.csgochecker",
"productName": "CSGO account checker",
"win": {
"artifactName": "CSGO Checker installer.${ext}",
"target": [
"nsis",
"portable"
]
},
"portable": {
"artifactName": "csgo-checker_portable.${ext}"
},
"linux": {
"artifactName": "${name}_${arch}-${version}.${ext}",
"synopsis": "CS:GO account checker",
"category": "Utility",
"maintainer": "nezu <[email protected]>",
"target": [
"AppImage",
"flatpak",
"tar.gz",
"deb"
]
},
"publish": [
{
"provider": "github",
"owner": "dumbasPL",
"repo": "csgo-checker"
}
]
}
}