inital commit

This commit is contained in:
chikovanreuden
2025-10-20 02:05:08 +02:00
commit 2fb5f48a54
19 changed files with 601 additions and 0 deletions

22
package.json Normal file
View File

@@ -0,0 +1,22 @@
{
"name": "eventcalender",
"module": "index.ts",
"type": "module",
"private": true,
"devDependencies": {
"@types/bun": "^1.3.0"
},
"scripts": {
"dev": "bun run ./app/app.ts",
"dev:init": "bun run ./app/app.ts --init",
"db:init": "bun run ./run/db_init.ts",
"db:deleteall": "bun run ./run/db_deleteall.ts"
},
"peerDependencies": {
"typescript": "^5"
},
"dependencies": {
"dotenv": "^17.2.3",
"minimist": "^1.2.8"
}
}