aboutsummaryrefslogtreecommitdiffstats
path: root/package.json
diff options
context:
space:
mode:
authorJan Tuomi <jan@jantuomi.fi>2026-05-06 21:54:44 +0300
committerJan Tuomi <jan@jantuomi.fi>2026-05-06 21:54:44 +0300
commitf50f233ffd5c9a504de32a63a5695ce875f8e26f (patch)
treecf6669231ffbb7ceb1284061d46863d309bba780 /package.json
parent713ced9c68cd70a8e56e8ce5ed27cb9bbe3e55c4 (diff)
Remove bun, use tsx
Diffstat (limited to 'package.json')
-rw-r--r--package.json6
1 files changed, 3 insertions, 3 deletions
diff --git a/package.json b/package.json
index 6a5da49..dcc31f2 100644
--- a/package.json
+++ b/package.json
@@ -4,8 +4,7 @@
"description": "",
"main": "src/bot.ts",
"scripts": {
- "start": "npx tsx src/bot.ts",
- "build": "bun build src/bot.ts --outfile=build/index.js --target=node --format=cjs --minify",
+ "start": "tsx src/bot.ts",
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [],
@@ -19,6 +18,7 @@
},
"devDependencies": {
"@types/better-sqlite3": "^7.6.13",
- "@types/node": "25.6.0"
+ "@types/node": "25.6.0",
+ "tsx": "^4.19.0"
}
}