-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 912 Bytes
/
Copy pathpackage.json
File metadata and controls
33 lines (33 loc) · 912 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
29
30
31
32
33
{
"name": "xp.ubq.fi",
"version": "0.1.0",
"scripts": {
"build": "bun run tools/build.ts",
"type-check": "tsc --noEmit --watch",
"dev:server": "bun --hot run tools/server.ts",
"dev:frontend": "run-p watch type-check",
"dev:enhanced": "bun run tools/dev.ts",
"dev:start-server": "bun --watch run tools/server.ts",
"dev": "bun run tools/dev.ts",
"start": "bun run tools/server.ts",
"auto-commit": "bun run tools/auto-commit-watch.ts"
},
"devDependencies": {
"@types/bun": "^1.2.9",
"@types/glob": "^8.1.0",
"bun-types": "^1.2.9",
"esbuild": "^0.25.2",
"npm-run-all": "^4.1.5",
"prettier": "^3.5.3",
"typescript": "^5.8.3"
},
"dependencies": {
"@elysiajs/static": "^1.2.0",
"@zip.js/zip.js": "^2.7.60",
"chokidar": "^4.0.3",
"elysia": "^1.2.25",
"fflate": "^0.8.2",
"glob": "^11.0.1",
"jose": "^6.0.10"
}
}