initial commit

This commit is contained in:
creations 2025-05-01 13:53:38 -04:00
commit 44077f3ccd
Signed by: creations
GPG key ID: 8F553AA4320FC711
14 changed files with 461 additions and 0 deletions

24
package.json Normal file
View file

@ -0,0 +1,24 @@
{
"name": "void_backend",
"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.10",
"@types/ejs": "^3.1.5",
"globals": "^16.0.0",
"@biomejs/biome": "^1.9.4"
},
"peerDependencies": {
"typescript": "^5.8.2"
},
"dependencies": {
"@creations.works/logger": "^1.0.3"
}
}