-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
109 lines (109 loc) · 3.09 KB
/
package.json
File metadata and controls
109 lines (109 loc) · 3.09 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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
{
"name": "yolkbot",
"description": "create a shell shockers (self) bot in under 10 lines.",
"version": "0.1.1-alpha.35",
"keywords": [
"shell shockers",
"shellshock.io",
"blue wizard",
"yolkbot"
],
"homepage": "https://github.com/enbyte/yolkbot#readme",
"bugs": {
"url": "https://github.com/enbyte/yolkbot/issues"
},
"author": "hijinks",
"contributors": [
"1ust"
],
"repository": {
"type": "git",
"url": "git+https://github.com/enbyte/yolkbot.git"
},
"type": "module",
"files": [
"browser/build/*.js",
"data/*.*",
"src/**/*",
"package.json",
"README.md"
],
"exports": {
"./package.json": "./package.json",
".": "./src/index.js",
"./api": {
"import": "./src/api.js",
"types": "./src/types/api.d.ts"
},
"./browser": "./browser/build/module.js",
"./comm": "./src/comm/index.js",
"./matchmaker": {
"import": "./src/matchmaker.js",
"types": "./src/types/matchmaker.d.ts"
},
"./packets": "./src/packet.js",
"./pathing/*": "./src/pathing/*.js",
"./pathing/*.js": "./src/pathing/*.js",
"./bot": {
"import": "./src/bot.js",
"types": "./src/types/bot.d.ts"
},
"./bot/*": {
"import": "./src/bot/*.js",
"types": "./src/types/bot/*.d.ts"
},
"./bot/*.js": {
"import": "./src/bot/*.js",
"types": "./src/types/bot/*.d.ts"
},
"./constants": {
"import": "./src/constants/index.js",
"types": "./src/types/constants/index.d.ts"
},
"./constants/*": {
"import": "./src/constants/*.js",
"types": "./src/types/constants/*.d.ts"
},
"./constants/*.js": {
"import": "./src/constants/*.js",
"types": "./src/types/constants/*.d.ts"
},
"./dispatch": {
"import": "./src/dispatches/index.js",
"types": "./src/types/dispatches.d.ts"
},
"./dispatch/*": {
"import": "./src/dispatches/*.js",
"types": "./src/types/dispatches/*.d.ts"
},
"./dispatch/*.js": {
"import": "./src/dispatches/*.js",
"types": "./src/types/dispatches/*.d.ts"
}
},
"dependencies": {
"axios": "^1.8.3",
"smallsocks": "^1.0.0",
"ws": "^8.18.0"
},
"devDependencies": {
"@eslint/js": "^9.20.0",
"@stylistic/eslint-plugin": "^4.0.1",
"esbuild": "^0.25.0",
"eslint": "^9.20.1",
"globals": "^15.15.0"
},
"scripts": {
"lint": "eslint --fix",
"prod": "./prod.sh",
"test": "./build.sh"
},
"imports": {
"#api": "./src/api.js",
"#bot": "./src/bot.js",
"#constants": "./src/constants/index.js",
"#dispatch/*": "./src/dispatches/*",
"#matchmaker": "./src/matchmaker.js",
"#packet": "./src/packet.js"
}
}