93 lines
2.5 KiB
JSON
93 lines
2.5 KiB
JSON
{
|
|
"name": "@the-bds-maneger/core",
|
|
"private": false,
|
|
"publishConfig": {
|
|
"access": "public"
|
|
},
|
|
"version": "2.0.6",
|
|
"description": "A very simple way to manage Minecraft servers",
|
|
"types": "./dist/dts/index.d.ts",
|
|
"main": "./dist/cjs/index.js",
|
|
"module": "./dist/esm/index.mjs",
|
|
"exports": {
|
|
"require": "./dist/cjs/index.js",
|
|
"import": "./dist/esm/index.mjs"
|
|
},
|
|
"scripts": {
|
|
"dev": "nodemon",
|
|
"release": "standard-version",
|
|
"build": "run-s build:*",
|
|
"test": "ts-node test/index.ts",
|
|
"build:cjs": "tsc --outDir dist/cjs --module commonjs",
|
|
"build:esm": "tsc --outDir dist/esm --module es6 && node -e 'const fs = require(\"fs\");const path = require(\"path\");const read = (pathRe) => {for (const fileFolde of fs.readdirSync(pathRe)) {const filePath = path.join(pathRe, fileFolde);if (fs.statSync(filePath).isDirectory()) read(filePath);else {console.log(filePath, \"-->\", filePath.replace(/\\.js$/, \".mjs\"));fs.renameSync(filePath, filePath.replace(/\\.js$/, \".mjs\"));}}};read(\"dist/esm\");'"
|
|
},
|
|
"nodemonConfig": {
|
|
"delay": 2500,
|
|
"ext": "json,js,ts",
|
|
"ignore": [
|
|
"test/*"
|
|
],
|
|
"watch": [
|
|
"src",
|
|
"package.json",
|
|
"package-lock.json"
|
|
],
|
|
"exec": "npm run build:cjs && npm run test"
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git+https://github.com/The-Bds-Maneger/Bds-Maneger-Core.git"
|
|
},
|
|
"keywords": [
|
|
"minecraft",
|
|
"bds",
|
|
"bds-server",
|
|
"bedrock",
|
|
"java",
|
|
"pocketmine",
|
|
"server_mode",
|
|
"rest",
|
|
"typescript"
|
|
],
|
|
"author": "Sirherobrine23",
|
|
"license": "AGPL-3.0-or-later",
|
|
"bugs": {
|
|
"url": "https://github.com/The-Bds-Maneger/Bds-Maneger-Core/issues/new"
|
|
},
|
|
"homepage": "https://docs.bdsmaneger.com/Bds Maneger core",
|
|
"engines": {
|
|
"node": ">=16.0.0"
|
|
},
|
|
"os": [
|
|
"linux",
|
|
"darwin",
|
|
"win32",
|
|
"android"
|
|
],
|
|
"dependencies": {
|
|
"@the-bds-maneger/server_versions": "^22.486.913",
|
|
"adm-zip": "^0.5.9",
|
|
"axios": "^0.27.0",
|
|
"cli-color": "^2.0.2",
|
|
"cron": "^1.8.2",
|
|
"cron-validator": "^1.3.1",
|
|
"dir-compare": "^4.0.0",
|
|
"fs-extra": "^10.0.1",
|
|
"prismarine-nbt": "^2.2.1",
|
|
"simple-git": "^3.6.0",
|
|
"tar": "^6.1.11"
|
|
},
|
|
"devDependencies": {
|
|
"@types/adm-zip": "^0.5.0",
|
|
"@types/cli-color": "^2.0.2",
|
|
"@types/cron": "^1.7.3",
|
|
"@types/fs-extra": "^9.0.13",
|
|
"@types/node": "^17.0.22",
|
|
"@types/tar": "^6.1.1",
|
|
"nodemon": "^2.0.15",
|
|
"npm-run-all": "^4.1.5",
|
|
"standard-version": "^9.3.2",
|
|
"ts-node": "^10.7.0",
|
|
"typescript": "^4.6.4"
|
|
}
|
|
} |