-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 908 Bytes
/
package.json
File metadata and controls
34 lines (34 loc) · 908 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
{
"name": "spout",
"version": "1.0.1",
"description": "The simple, easy to use, and staff friendly Spigot fork",
"main": "lib/.spout/index.js",
"scripts": {
"start": "tsc -p . && node lib/index.js",
"dev": "concurrently \"tsc -w\" \"nodemon --watch lib/**/* --ext js\"",
"live": "concurrently \"tsc -w\" \"nodemon --watch '**/**/*' '.spout/internal/plugins/**/*' --ext ts\""
},
"author": "Blocks_n_more & Corman",
"license": "GPL",
"keywords": [
"Minecraft",
"Spigot",
"Paper",
"Server",
"Plugins"
],
"dependencies": {
"@types/node": "^15.3.0",
"bluebird": "^3.7.2",
"minecraft-data": "^2.84.0",
"minecraft-protocol": "^1.25.0",
"prismarine-block": "^1.9.0",
"prismarine-chunk": "^1.22.0",
"that-logger": "^1.0.7",
"vec3": "^0.1.7",
"yaml": "^1.10.2"
},
"devDependencies": {
"@types/bluebird": "^3.5.35"
}
}