first commit

This commit is contained in:
Soph :3 2025-12-12 21:12:47 +02:00
commit 672f0deb6a
18 changed files with 1274 additions and 0 deletions

24
package.json Normal file
View file

@ -0,0 +1,24 @@
{
"name": "link_shortener",
"module": "index.ts",
"type": "module",
"private": true,
"devDependencies": {
"@types/bun": "latest"
},
"peerDependencies": {
"typescript": "^5"
},
"scripts": {
"build-frontend:dev": "bun run frontend.ts",
"build-frontend:prod": "bun run frontend.ts prod",
"backend": "bun run backend/index.ts"
},
"dependencies": {
"@tailwindcss/postcss": "^4.1.18",
"postcss": "^8.5.6",
"sssg": "git+https://git.sad.ovh/sophie/sssg#e183025a165f1c12b5a270710f994482f33fb9f5",
"tailwindcss": "^4.1.18",
"zod": "^4.1.13"
}
}