-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
28 lines (28 loc) · 837 Bytes
/
package.json
File metadata and controls
28 lines (28 loc) · 837 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
{
"name": "backend",
"version": "0.0.1",
"private": true,
"scripts": {
"dev": "bun run --hot src/index.ts",
"start": "bun run src/index.ts",
"test": "bun test",
"build": "bun run scripts/build-catalog.ts --resource-dir=build/resources --feed-dir=build/feeds",
"typecheck": "tsc --noEmit",
"lint": "biome lint .",
"lint:fix": "biome lint --write .",
"format": "biome format .",
"format:fix": "biome format --write ."
},
"dependencies": {
"@vercel/functions": "^3.4.3",
"elysia": "^1.4.28",
"fast-xml-parser": "^5.5.6"
},
"devDependencies": {
"@biomejs/biome": "^2.4.7",
"@types/pngjs": "^6.0.5",
"bun-types": "^1.3.10",
"pngjs": "^7.0.0",
"typescript": "^5.9.3"
}
}