mc-beta-server/package.json

42 lines
1.0 KiB
JSON
Raw Normal View History

2021-08-12 04:58:56 +01:00
{
2021-08-21 08:38:06 +01:00
"name": "mc-beta-server",
"version": "1.0.0",
"description": "",
2023-04-08 20:52:47 +01:00
"main": "index.ts",
"scripts": {
2023-04-13 11:06:00 +01:00
"dev:updateCheck": "check-outdated",
2023-04-08 20:52:47 +01:00
"dev:run": "nodemon --watch './**/*.ts' index.ts",
"build": "npm-run-all build:*",
2023-11-02 10:40:46 +00:00
"build:build": "ncc build index.ts -o build",
"build:mangle": "ts-node ./tooling/mangle.ts",
2023-08-20 02:17:30 +01:00
"build:cleanup": "ts-node ./tooling/cleanup.ts",
2023-04-08 20:52:47 +01:00
"_clean": "tsc --build --clean"
},
2021-08-21 08:38:06 +01:00
"repository": {
"type": "git",
2023-04-09 04:59:23 +01:00
"url": "git+https://github.com/tgpholly/mc-beta-server.git"
2021-08-21 08:38:06 +01:00
},
"keywords": [],
2023-04-13 11:06:00 +01:00
"author": "tgpholly",
2021-08-21 08:38:06 +01:00
"license": "MIT",
"bugs": {
2023-04-09 04:59:23 +01:00
"url": "https://github.com/tgpholly/mc-beta-server/issues"
2021-08-21 08:38:06 +01:00
},
2023-04-09 04:59:23 +01:00
"homepage": "https://github.com/tgpholly/mc-beta-server#readme",
2021-08-21 08:38:06 +01:00
"dependencies": {
2023-11-07 01:50:35 +00:00
"bufferstuff": "^1.4.2",
"hsconsole": "^1.0.2"
2023-04-08 20:52:47 +01:00
},
"devDependencies": {
2023-11-02 10:40:46 +00:00
"@types/node": "^20.8.10",
"@vercel/ncc": "^0.38.1",
2023-08-20 01:18:05 +01:00
"check-outdated": "^2.12.0",
2023-07-28 10:36:56 +01:00
"nodemon": "^3.0.1",
"npm-run-all": "^4.1.5",
2023-11-02 10:40:46 +00:00
"terser": "^5.24.0",
2023-10-29 05:08:26 +00:00
"ts-loader": "^9.5.0",
2023-04-08 20:52:47 +01:00
"ts-node": "^10.9.1",
2023-10-29 05:08:26 +00:00
"typescript": "^5.2.2"
2021-08-21 08:38:06 +01:00
}
2021-08-12 04:58:56 +01:00
}