Files
77th_eventcalenderntfy/package.json
chiko 999bdf7222 fix-docker (#1)
Reviewed-on: #1
2025-10-21 00:52:32 +00:00

27 lines
847 B
JSON

{
"version": "0.1.0",
"name": "eventcalender",
"module": "./src/app.ts",
"type": "module",
"private": true,
"devDependencies": {
"@types/bun": "^1.3.0"
},
"scripts": {
"dev": "bun run ./src/app.ts",
"dev:init": "bun run ./src/app.ts --init",
"db:init": "bun run ./run/db_init.ts",
"db:deleteall": "bun run ./run/db_deleteall.ts",
"build": "bun build --compile --minify --sourcemap ./src/app.ts --outfile ./build/77th_event_calendar_notification",
"build:linux": "bun build --compile --minify --sourcemap --target=bun-linux-arm64 ./src/app.ts --outfile ./build/77th_event_calendar_notification",
"docker:build": "docker build -t chiko/77th_eventcalendarntfy:0.1.0 ."
},
"peerDependencies": {
"typescript": "^5"
},
"dependencies": {
"dotenv": "^17.2.3",
"minimist": "^1.2.8"
}
}