mc-beta-server/package.json

41 lines
946 B
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",
"pack": "webpack",
"build": "tsc --build",
"_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-04-13 11:06:00 +01:00
"chalk": "^4.1.2",
2023-06-22 12:43:28 +01:00
"net": "^1.0.2",
"bufferstuff": "^1.3.0"
2023-04-08 20:52:47 +01:00
},
"devDependencies": {
2023-05-02 20:59:12 +01:00
"@types/node": "^18.16.3",
2023-04-13 11:06:00 +01:00
"check-outdated": "^2.11.0",
2023-04-08 20:52:47 +01:00
"nodemon": "^2.0.20",
"ts-loader": "^9.4.1",
"ts-node": "^10.9.1",
2023-04-13 11:06:00 +01:00
"typescript": "^5.0.4",
2023-05-02 20:59:12 +01:00
"webpack": "^5.81.0",
"webpack-cli": "^5.0.2",
2023-04-08 20:52:47 +01:00
"webpack-node-externals": "^3.0.0"
2021-08-21 08:38:06 +01:00
}
2021-08-12 04:58:56 +01:00
}