-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1014 Bytes
/
package.json
File metadata and controls
43 lines (43 loc) · 1014 Bytes
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
{
"name": "bonkbot",
"version": "4.0.4",
"description": "A bonk.io botting library",
"main": "src/index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"download-cert": "node scripts/download-cert.js",
"preinstall": "node scripts/download-cert.js || true",
"simple-bot": "node examples/simple-bot.js",
"host-bot": "node examples/host-bot.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/PixelMelt/BonkBot.git"
},
"author": "PixelMelt",
"license": "GPL-3.0",
"bugs": {
"url": "https://github.com/PixelMelt/BonkBot/issues"
},
"homepage": "https://github.com/PixelMelt/BonkBot#readme",
"dependencies": {
"axios": "^1.13.5",
"socket.io-client": "^2.4.0"
},
"engines": {
"node": ">=12.0.0"
},
"keywords": [
"bonk.io",
"bot",
"game",
"automation"
],
"private": true,
"devDependencies": {
"@types/bun": "latest"
},
"peerDependencies": {
"typescript": "^5"
}
}