-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
76 lines (76 loc) · 1.51 KB
/
Copy pathpackage.json
File metadata and controls
76 lines (76 loc) · 1.51 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
{
"name": "orbsniper",
"version": "1.5.0",
"description": "OrbSniper farms Discord Orbs for you. Auto-accepts, completes and claims Discord Quests while you AFK. No token needed.",
"keywords": [
"discord",
"quests",
"orbs",
"electron",
"automation",
"farming"
],
"homepage": "https://github.com/syntaxixr/OrbSniper",
"repository": {
"type": "git",
"url": "https://github.com/syntaxixr/OrbSniper.git"
},
"bugs": {
"url": "https://github.com/syntaxixr/OrbSniper/issues"
},
"main": "main.js",
"author": "synaps_ss",
"license": "MIT",
"private": false,
"scripts": {
"start": "electron .",
"test": "node test/run.js",
"dist": "electron-builder --win portable"
},
"dependencies": {
"ws": "^8.21.3"
},
"devDependencies": {
"electron": "^44.0.0",
"electron-builder": "^26.15.3"
},
"build": {
"appId": "com.synaps.orbsniper",
"productName": "OrbSniper",
"directories": {
"output": "dist"
},
"files": [
"main.js",
"preload.js",
"quest.js",
"renderer/**/*",
"icon.ico",
"package.json"
],
"win": {
"icon": "icon.ico",
"target": [
{
"target": "portable",
"arch": [
"x64"
]
},
{
"target": "dir",
"arch": [
"x64"
]
}
]
},
"portable": {
"artifactName": "OrbSniper.exe"
},
"electronLanguages": [
"en-US",
"ru"
]
}
}