mc-beta-server/package.json

38 lines
843 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": {
"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": [],
"author": "",
"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-08 20:52:47 +01:00
"chalk": "^4.1.0",
2021-08-21 08:38:06 +01:00
"net": "^1.0.2"
2023-04-08 20:52:47 +01:00
},
"devDependencies": {
"@types/node": "^18.15.11",
"nodemon": "^2.0.20",
"ts-loader": "^9.4.1",
"ts-node": "^10.9.1",
"typescript": "^4.9.3",
"webpack": "^5.75.0",
"webpack-cli": "^4.10.0",
"webpack-node-externals": "^3.0.0"
2021-08-21 08:38:06 +01:00
}
2021-08-12 04:58:56 +01:00
}