first commit
All checks were successful
Code quality checks / biome (push) Successful in 7s

This commit is contained in:
creations 2025-05-11 14:07:03 -04:00
commit 9389fd5f8c
Signed by: creations
GPG key ID: 8F553AA4320FC711
15 changed files with 418 additions and 0 deletions

24
package.json Normal file
View file

@ -0,0 +1,24 @@
{
"name": "forgejo_pages",
"module": "src/index.ts",
"type": "module",
"scripts": {
"start": "bun run src/index.ts",
"dev": "bun run --hot src/index.ts --dev",
"lint": "bunx biome check",
"lint:fix": "bunx biome check --fix",
"cleanup": "rm -rf logs node_modules bun.lockdb"
},
"devDependencies": {
"@types/bun": "^1.2.13",
"globals": "^16.1.0",
"@biomejs/biome": "^1.9.4"
},
"peerDependencies": {
"typescript": "^5.8.3"
},
"dependencies": {
"@creations.works/logger": "^1.0.3",
"mime": "^4.0.7"
}
}