Binato/package.json

39 lines
931 B
JSON
Raw Normal View History

2020-08-27 13:09:35 +01:00
{
2021-05-15 00:24:39 +01:00
"name": "binato",
"version": "1.0.0",
"description": "",
2022-11-16 11:59:23 +00:00
"main": "Binato.ts",
"scripts": {
2023-08-20 13:03:01 +01:00
"dev:updateCheck": "check-outdated",
2022-11-17 00:29:07 +00:00
"dev:run": "nodemon --watch './**/*.ts' Binato.ts",
2023-08-20 13:03:01 +01:00
"build": "npm-run-all build:*",
"build:smash": "ts-node ./tooling/fileSmasher.ts",
"build:build": "tsc --build",
"build:mangle": "ts-node ./tooling/mangle.ts",
"build:cleanup": "ts-node ./tooling/cleanup.ts",
2022-11-17 00:29:07 +00:00
"_clean": "tsc --build --clean"
2022-11-16 11:59:23 +00:00
},
2021-05-15 00:24:39 +01:00
"keywords": [],
"author": "",
"license": "MIT",
"dependencies": {
2022-11-17 00:29:07 +00:00
"aes256": "^1.1.0",
2023-08-20 13:03:01 +01:00
"dyetty": "^1.0.1",
2023-09-10 12:59:22 +01:00
"mysql2": "^3.6.1",
"node-fetch": "^2.7.0",
2021-05-15 00:24:39 +01:00
"osu-packet": "^4.1.2",
2023-08-20 13:03:01 +01:00
"prom-client": "^14.2.0",
2023-09-10 12:59:22 +01:00
"redis": "^4.6.8"
2022-11-16 11:59:23 +00:00
},
"devDependencies": {
2023-09-10 12:59:22 +01:00
"@types/node": "^20.6.0",
2023-08-20 13:03:01 +01:00
"@types/node-fetch": "^2.6.4",
"check-outdated": "^2.12.0",
"nodemon": "^3.0.1",
"npm-run-all": "^4.1.5",
"ts-loader": "^9.4.4",
2022-11-17 00:29:07 +00:00
"ts-node": "^10.9.1",
2023-09-10 12:59:22 +01:00
"typescript": "^5.2.2"
2021-05-15 00:24:39 +01:00
}
}