forked from vincss/mcsleepingserverstarter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
78 lines (78 loc) · 2.35 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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
{
"name": "mcsleepingserverstarter",
"version": "1.5.12",
"description": "Sleeps until someone connects",
"main": "build/sleepingServerStarter.js",
"bin": "build/sleepingServerStarter.js",
"scripts": {
"start": "run-s prebuild build:typescript run",
"run": "node .",
"dev": "ts-node ./src/sleepingServerStarter.ts",
"prebuild": "rimraf ./build/ ./bin/ && cpx-fixed \"views/**/*.*\" build/views",
"build": "run-s build:typescript build:bin",
"build:typescript": "tsc",
"build:bin": "pkg build/sleepingServerStarter.js --config package.json --compress GZip --target node18-win-x64,node18-linux-x64,node18-linux-arm64,node18-macos-x64,node18-macos-arm64 --out-path ./bin/",
"test": "jest",
"lint": "eslint . --ext .ts --fix",
"format": "prettier --ignore-path .gitignore --write \"**/*.+(js|ts|json)\""
},
"dependencies": {
"@jsprismarine/prismarine": "^0.1.0-rc.49",
"@jsprismarine/raknet": "^0.1.0-rc.49",
"@sfirew/minecraft-motd-parser": "^1.1.1",
"express": "^4.18.2",
"express-handlebars": "^7.0.4",
"js-yaml": "^4.1.0",
"minecraft-protocol": "^1.43.0",
"prismarine-chat": "^1.8.0",
"winston": "^3.8.2"
},
"devDependencies": {
"@types/connect": "^3.4.35",
"@types/express": "^4.17.17",
"@types/jest": "^29.5.0",
"@types/js-yaml": "^4.0.5",
"@types/node": "^18.15.11",
"@types/serve-static": "^1.15.1",
"@typescript-eslint/eslint-plugin": "^5.57.1",
"@typescript-eslint/parser": "^5.57.1",
"cpx-fixed": "^1.6.0",
"eslint": "^8.37.0",
"eslint-config-prettier": "^8.8.0",
"nodemon": "^2.0.22",
"npm-run-all": "^4.1.5",
"pkg": "^5.8.1",
"prettier": "^2.8.8",
"rimraf": "^4.4.1",
"ts-jest": "^29.1.0",
"ts-node": "^10.9.1",
"typescript": "^5.0.3"
},
"author": "Vincss",
"license": "ISC",
"repository": {
"type": "git",
"url": "git+https://github.com/vincss/mcsleepingserverstarter.git"
},
"keywords": [
"maintenance",
"minecraft",
"nodejs",
"emptyserverstopper",
"sleepingserver"
],
"bugs": {
"url": "https://github.com/vincss/mcsleepingserverstarter/issues"
},
"homepage": "https://github.com/vincss/mcsleepingserverstarter#readme",
"engines": {
"node": ">=16",
"npm": ">=8"
},
"pkg": {
"scripts": "build/*.js",
"assets": [
"build/views/**/*"
]
}
}