This repository has been archived on 2024-01-16. You can view files and clone it, but cannot push or open issues or pull requests.
Files
Maneger/package.json
github-actions[bot] 65ad790bd5 Update version v3.0.1 (#381)
Co-authored-by: Sirherobrine23 <Sirherobrine23@users.noreply.github.com>
2022-05-25 14:01:12 -03:00

87 lines
2.4 KiB
JSON

{
"name": "@the-bds-maneger/core",
"private": false,
"publishConfig": {
"access": "public"
},
"version": "3.0.1",
"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",
"build": "run-s build:*",
"test:host": "node testProject.js",
"test": "docker build . -f test.Dockerfile",
"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,
"exec": "npm run test",
"ext": "json,ts",
"watch": [
"src/**/*",
"package.json",
"package-lock.json"
]
},
"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": "^2.1.2",
"adm-zip": "^0.5.9",
"axios": "^0.27.0",
"cron": "^2.0.0",
"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": "^2.0.0",
"@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",
"ts-node": "^10.7.0",
"typescript": "^4.6.4"
}
}