add build and start scripts to package.json

This commit is contained in:
암냥 2026-04-16 00:27:45 +09:00
commit 4ce60e2cc9
No known key found for this signature in database

View file

@ -3,7 +3,9 @@
"version": "1.0.50", "version": "1.0.50",
"scripts": { "scripts": {
"test": "echo \"Error: no test specified\" && exit 1", "test": "echo \"Error: no test specified\" && exit 1",
"dev": "bun run --watch src/index.ts" "dev": "bun run --watch src/index.ts",
"build": "bun build --compile --minify-whitespace --minify-syntax --outfile server src/index.ts",
"start": "./server"
}, },
"dependencies": { "dependencies": {
"@aws-sdk/client-s3": "^3.1030.0", "@aws-sdk/client-s3": "^3.1030.0",