-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
68 lines (68 loc) · 1.8 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
{
"name": "boove",
"version": "1.2.0",
"description": "An advanced bot panel that makes minecraft/discord bot and runs them at the same time with easy controls",
"main": "./src/index.js",
"scripts": {
"start": "electron .",
"dist": "electron-builder",
"winx64": "electron-builder build --win --x64",
"winx86": "electron-builder build --win --ia32",
"linux64": "electron-builder build --linux --x64",
"linux86": "electron-builder build --linux --ia32",
"test": "echo \"Error: no test specified\" && exit 1"
},
"author": "Fiend <[email protected]>",
"maintainer": "Fiend",
"license": "ISC",
"dependencies": {
"discord-rich-presence": "^0.0.8",
"discord.js": "^13.7.0",
"electron-reload": "^2.0.0-alpha.1",
"electron-updater": "^5.3.0",
"ip": "^1.1.8",
"lottie-web": "^5.10.2",
"minecraft-protocol": "^1.36.1",
"mineflayer": "^4.4.0",
"mineflayer-antiafk": "^1.1.1",
"mineflayer-armor-manager": "^1.4.2",
"mineflayer-auto-eat": "^2.3.3",
"mineflayer-gui": "^2.1.2",
"mineflayer-pathfinder": "^2.4.0",
"mineflayer-pvp": "^1.3.2",
"network-speed": "^2.1.1",
"systeminformation": "^5.12.7",
"vec3": "^0.1.7"
},
"devDependencies": {
"electron": "^21.1.0",
"electron-builder": "^23.6.0"
},
"build": {
"appId": "flubel.naz.boove",
"productName": "Boove",
"copyright": "Copyright © 2022 Fiend|Flubel",
"publish":[
{
"provider": "github",
"owner": "MrFiend179",
"repo": "Flubel-Boove"
}
],
"win": {
"target": "nsis",
"publisherName": "Fiend",
"icon": "src/mainlogo1.png"
},
"nsis": {
"oneClick": false
},
"linux": {
"target": [
"deb"
],
"icon": "src/mainlogo1.png",
"category": "Utility"
}
}
}