-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
55 lines (55 loc) · 1.46 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
{
"name": "observermc",
"version": "1.0.8",
"description": "A Node.js wrapper and API for multiple Minecraft Servers",
"main": "dist/index.js",
"scripts": {
"start": "node dist/api.js",
"test": "npm run build && node dist/test.js",
"test:clean": "npm run build:clean && node dist/test.js",
"api": "npm run build && node dist/api.js --config example-config.json",
"api:clean": "npm run build:clean && node dist/api.js --config example-config.json",
"build": "tsc",
"build:clean": "rimraf dist && tsc"
},
"files": [
"dist/*"
],
"bin": {
"observermc": "./dist/api.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/JCAguilera/observer.git"
},
"keywords": [
"minecraft",
"minecraft-server",
"minecraft-wrapper"
],
"author": "JC Aguilera",
"license": "MIT",
"bugs": {
"url": "https://github.com/JCAguilera/observer/issues"
},
"homepage": "https://github.com/JCAguilera/observer#readme",
"dependencies": {
"@scriptserver/core": "^2.0.4",
"@scriptserver/essentials": "^2.0.4",
"commander": "^8.3.0",
"dayjs": "^1.10.7",
"express": "^4.17.1",
"fs": "^0.0.1-security",
"got": "^11.8.3",
"minecraft-server-properties": "^1.0.0",
"path": "^0.12.7",
"socket.io": "^4.4.0",
"to-uuid": "^0.1.3"
},
"devDependencies": {
"@types/express": "^4.17.13",
"@types/node": "^16.11.10",
"@types/uuid": "^8.3.3",
"rimraf": "^3.0.2"
}
}