Files
mcsleepingserverstarter/package.json
T

72 lines
2.3 KiB
JSON

{
"name": "mcsleepingserverstarter",
"version": "1.4.1",
"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 --out-path ./bin/",
"test": "echo \"Error: no test specified\" && exit 1",
"lint": "eslint . --ext .ts --fix"
},
"dependencies": {
"@jsprismarine/prismarine": "^0.1.0-rc.49",
"@jsprismarine/raknet": "^0.1.0-rc.49",
"express": "^4.18.2",
"express-handlebars": "^6.0.5",
"js-yaml": "^4.1.0",
"minecraft-protocol": "^1.41.1",
"winston": "^3.7.2"
},
"devDependencies": {
"@types/connect": "^3.4.35",
"@types/express": "^4.17.16",
"@types/js-yaml": "^4.0.5",
"@types/node": "^18.11.18",
"@types/serve-static": "^1.13.10",
"@typescript-eslint/eslint-plugin": "^5.49.0",
"@typescript-eslint/parser": "^5.49.0",
"cpx-fixed": "^1.6.0",
"eslint": "^8.32.0",
"nodemon": "^2.0.15",
"npm-run-all": "^4.1.5",
"pkg": "^5.8.0",
"rimraf": "^4.1.2",
"ts-node": "^10.9.1",
"typescript": "^4.9.4"
},
"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/**/*"
]
}
}