use bun and remove some deps

This commit is contained in:
2024-02-27 17:59:00 +01:00
parent 500d7b2423
commit 3ca15c532f
13 changed files with 61 additions and 367 deletions

View File

@@ -1,23 +1,20 @@
{
"version": "1.3.4",
"version": "1.4.0",
"license": "MIT",
"type": "module",
"main": "dist",
"main": "./src/index.ts",
"scripts": {
"build": "tsc",
"dev": "tsc -w",
"start": "node ."
"check": "tsc --noEmit",
"dev": "bun --watch ./src/index.ts",
"start": "bun ./src/index.ts"
},
"dependencies": {
"axios": "^1.6.7",
"dotenv": "^16.4.5",
"node-cron": "^3.0.3",
"croner": "^8.0.1",
"winston": "^3.11.0"
},
"devDependencies": {
"@types/node": "^20.11.20",
"@types/node-cron": "^3.0.11",
"@types/bun": "^1.0.7",
"typescript": "^5.3.3"
},
"packageManager": "pnpm@8.15.4"
}
}