2024-01-05 16:46:44 -05:00
|
|
|
{
|
|
|
|
"name": "modular-minecraft-proxy",
|
|
|
|
"version": "1.0.0",
|
|
|
|
"description": "Lego Minecraft",
|
|
|
|
"main": "index.js",
|
|
|
|
"type": "module",
|
|
|
|
"scripts": {
|
|
|
|
"test": "echo \"Error: no test specified\" && exit 1",
|
|
|
|
"build": "scripty",
|
|
|
|
"watch:build": "scripty",
|
2024-01-11 14:00:34 -05:00
|
|
|
"copy": "scripty",
|
|
|
|
"watch:copy": "scripty",
|
2024-01-05 16:46:44 -05:00
|
|
|
"run": "scripty",
|
|
|
|
"watch:run": "scripty",
|
|
|
|
"watch": "scripty"
|
|
|
|
},
|
|
|
|
"keywords": [],
|
|
|
|
"author": "",
|
2024-01-11 14:00:34 -05:00
|
|
|
"license": "MIT",
|
2024-01-05 16:46:44 -05:00
|
|
|
"config": {
|
|
|
|
"scripty": {
|
|
|
|
"parallel": true,
|
|
|
|
"path": "script"
|
|
|
|
}
|
|
|
|
},
|
|
|
|
"devDependencies": {
|
|
|
|
"@swc/cli": "^0.1.63",
|
|
|
|
"@swc/core": "^1.3.102",
|
|
|
|
"@types/node": "^20.10.6",
|
|
|
|
"@typescript-eslint/eslint-plugin": "^6.17.0",
|
|
|
|
"@typescript-eslint/parser": "^6.17.0",
|
|
|
|
"eslint": "^8.56.0",
|
|
|
|
"eslint-config-standard-with-typescript": "^43.0.0",
|
|
|
|
"eslint-plugin-import": "^2.29.1",
|
|
|
|
"eslint-plugin-n": "^16.6.1",
|
|
|
|
"eslint-plugin-promise": "^6.1.1",
|
2024-01-07 03:26:32 -05:00
|
|
|
"eslint-plugin-require-extensions": "^0.1.3",
|
2024-01-05 16:46:44 -05:00
|
|
|
"nodemon": "^3.0.2",
|
|
|
|
"typescript": "^5.3.3"
|
|
|
|
},
|
|
|
|
"dependencies": {
|
2024-01-11 14:00:34 -05:00
|
|
|
"chalk": "^5.3.0",
|
2024-01-05 16:46:44 -05:00
|
|
|
"minecraft-protocol": "^1.26.5"
|
|
|
|
}
|
2024-01-07 03:26:32 -05:00
|
|
|
}
|