feat: migrate to bun

This commit is contained in:
2026-07-21 02:28:16 +07:00
parent ee6b7c7738
commit 99dc12a5cc
12 changed files with 423 additions and 896 deletions
+23 -13
View File
@@ -1,15 +1,25 @@
{
"name": "discordmobileplayingcli",
"version": "1.0.0",
"main": "index.js",
"author": "Yuzu <yuzu@kirameki.cafe>",
"license": "GPL-3.0",
"dependencies": {
"axios": "^0.27.2",
"dotenv": "^16.0.0",
"serverline": "^1.6.0"
},
"scripts": {
"start": "node index.js"
}
"name": "discord-mobile-playing-cli",
"version": "1.0.0",
"main": "src/index.ts",
"type": "module",
"author": "Yuzu <yuzu@kirameki.cafe>",
"license": "MIT",
"dependencies": {
"serverline": "^1.6.0"
},
"scripts": {
"dev": "bun run --watch src/index.ts",
"lint": "biome lint .",
"lint:fix": "biome lint --write .",
"format": "biome format .",
"format:fix": "biome format --write .",
"typecheck": "tsc --noEmit",
"check": "bun run typecheck && bun run lint && bun run format"
},
"devDependencies": {
"@biomejs/biome": "^2.5.4",
"@types/bun": "^1.3.14",
"typescript": "^7.0.2"
}
}