Bumps [@types/node](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/node) from 17.0.43 to 18.0.0. - [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases) - [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/node) --- updated-dependencies: - dependency-name: "@types/node" dependency-type: direct:development update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
94 lines
2.5 KiB
JSON
94 lines
2.5 KiB
JSON
{
|
|
"name": "@the-bds-maneger/core",
|
|
"version": "3.0.2",
|
|
"description": "A very simple way to manage Minecraft servers",
|
|
"author": "Sirherobrine23",
|
|
"license": "AGPL-3.0-or-later",
|
|
"homepage": "https://sirherobrine23.org/Bds_Maneger_Project",
|
|
"private": false,
|
|
"publishConfig": {
|
|
"access": "public"
|
|
},
|
|
"maintainers": [
|
|
{
|
|
"name": "Matheus Sampaio Queiroga",
|
|
"email": "srherobrine20@gmail.com",
|
|
"url": "https://sirherobrine23.org"
|
|
}
|
|
],
|
|
"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": "ts-node testProject.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\");'"
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git+https://github.com/The-Bds-Maneger/Bds-Maneger-Core.git"
|
|
},
|
|
"keywords": [
|
|
"typescript",
|
|
"bds",
|
|
"bds_maneger",
|
|
"bds-maneger",
|
|
"bds_project",
|
|
"minecraft",
|
|
"bedrock",
|
|
"java",
|
|
"pocketmine",
|
|
"spigot"
|
|
],
|
|
"bugs": {
|
|
"url": "https://github.com/The-Bds-Maneger/Bds-Maneger-Core/issues/new",
|
|
"email": "support_bds@sirherobrine23.org"
|
|
},
|
|
"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",
|
|
"fs-extra": "^10.0.1",
|
|
"mongoose": "^6.3.6",
|
|
"prismarine-nbt": "^2.2.1",
|
|
"tar": "^6.1.11"
|
|
},
|
|
"devDependencies": {
|
|
"@types/adm-zip": "^0.5.0",
|
|
"@types/cron": "^2.0.0",
|
|
"@types/fs-extra": "^9.0.13",
|
|
"@types/node": "^18.0.0",
|
|
"@types/tar": "^6.1.1",
|
|
"nodemon": "^2.0.15",
|
|
"npm-run-all": "^4.1.5",
|
|
"ts-node": "^10.7.0",
|
|
"typescript": "^4.6.4"
|
|
},
|
|
"nodemonConfig": {
|
|
"delay": 2500,
|
|
"exec": "npm run test",
|
|
"ext": "json,ts",
|
|
"watch": [
|
|
"src/**/*",
|
|
"package.json",
|
|
"package-lock.json"
|
|
]
|
|
}
|
|
}
|