modular-minecraft-proxy/package.json

57 lines
1.3 KiB
JSON
Raw Normal View History

2024-01-05 16:46:44 -05:00
{
"name": "modular-minecraft-proxy",
"version": "1.0.0",
"description": "Modular Minecraft Proxy",
2024-01-05 16:46:44 -05:00
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "scripty",
"watch:build": "scripty",
"lint": "scripty",
2024-01-05 16:46:44 -05:00
"run": "scripty",
"watch:run": "scripty",
"watch": "scripty"
},
"keywords": [],
"author": "Dinhero Development Group",
2024-01-11 14:00:34 -05:00
"license": "MIT",
"type": "module",
2024-01-05 16:46:44 -05:00
"config": {
"scripty": {
"parallel": true,
"path": "script"
}
},
"dependencies": {
2024-09-10 16:40:45 -04:00
"@inquirer/prompts": "^5.3.8",
2024-09-01 14:41:50 -04:00
"@types/text-table": "^0.2.5",
"chalk": "^5.3.0",
"commander": "^12.1.0",
2024-09-10 16:40:45 -04:00
"listr2": "^8.2.4",
2024-09-01 14:41:50 -04:00
"minecraft-protocol": "^1.47.0",
"strip-ansi": "^7.1.0",
"text-table": "^0.2.0",
2024-09-10 16:40:45 -04:00
"tmp-promise": "^3.0.3",
2024-09-01 14:41:50 -04:00
"zod": "^3.23.8"
},
"devDependencies": {
"@eslint/js": "^9.9.1",
"@swc/cli": "^0.4.0",
"@swc/core": "^1.7.22",
2024-08-30 12:27:14 -04:00
"@swc/helpers": "^0.5.12",
"@types/node": "^22.5.1",
"eslint": "^9.9.1",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-simple-import-sort": "^12.1.1",
"globals": "^15.9.0",
"nodemon": "^3.1.4",
"prettier": "^3.3.3",
"scripty": "^2.1.1",
"typescript": "^5.5.4",
"typescript-eslint": "^8.3.0"
2024-09-01 14:41:50 -04:00
},
"bin": {
"m3": "./dist/m3/bin.js"
2024-01-05 16:46:44 -05:00
}
2024-01-07 03:26:32 -05:00
}