-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
44 lines (44 loc) · 956 Bytes
/
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
{
"tasks": [
{
"label": "stopNode",
"type": "shell",
"command": "node",
"args": ["-e", "process.exit(0)"],
"group": {
"kind": "build",
"isDefault": true
}
}
],
"dependencies": {
"argon2": "^0.31.0",
"bytebuffer": "^5.0.1",
"express": "^4.18.2",
"express-rate-limit": "^6.9.0",
"jsonwebtoken": "^9.0.1",
"uuid": "^9.0.0"
},
"imports": {
"#server/*": "./Server/*.js",
"#user/*": "./User/*.js",
"#group/*": "./Group/*.js",
"#world/*": "./World/*.js",
"#world/objects/*": "./World/Objects/*.js",
"#updates/*": "./Updates/*.js",
"#config/*": "./Config/*.js",
"#masterserver/*": "./MasterServer/*.js"
},
"name": "orbweaver",
"version": "0.0.1",
"description": "a network overlay for runelite to create custom multiplayer games",
"main": "index.js",
"type": "module",
"keywords": [
"runescape",
"old school runescape",
"runelite"
],
"author": "david harris",
"license": "ISC"
}