chore: migrate project tooling to bun and add eslint linting

This commit is contained in:
Codex
2026-02-18 13:12:31 +00:00
parent 57946fa294
commit 82fbefda10
5 changed files with 240 additions and 16 deletions

View File

@@ -3,13 +3,26 @@
"version": "0.1.0",
"description": "X article to audio MVP",
"main": "src/server.js",
"packageManager": "bun@1.3.5",
"scripts": {
"dev": "node --watch src/server.js",
"start": "node src/server.js",
"test": "node --test"
"dev": "bun --watch src/server.js",
"start": "bun src/server.js",
"test": "bun test",
"lint": "bunx eslint src test"
},
"keywords": [],
"author": "",
"license": "ISC",
"type": "commonjs"
"type": "commonjs",
"dependencies": {
"cookie": "^1.1.1",
"dotenv": "^17.3.1",
"pino": "^10.3.1",
"zod": "^4.3.6"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"eslint": "^10.0.0",
"globals": "^17.3.0"
}
}