-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 822 Bytes
/
Copy pathpackage.json
File metadata and controls
33 lines (33 loc) · 822 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": "space",
"module": "index.ts",
"type": "module",
"scripts": {
"start": "bun server/index.ts",
"dev": "bun --watch server/index.ts",
"check:lint-format": "bun run check-lint-format.ts",
"format": "bun run format.ts"
},
"private": true,
"devDependencies": {
"@types/bun": "latest",
"@typescript-eslint/eslint-plugin": "^8.28.0",
"@typescript-eslint/parser": "^8.28.0",
"eslint": "^9.23.0",
"eslint-config-prettier": "^10.1.1",
"eslint-plugin-prettier": "^5.2.4",
"prettier": "^3.5.3"
},
"peerDependencies": {
"typescript": "^5"
},
"dependencies": {
"@types/busboy": "^1.5.4",
"busboy": "^1.6.0",
"hono": "^4.7.5",
"pocketbase": "^0.25.2",
"sanitize-filename": "^1.6.3",
"telegram": "^2.26.22",
"zod": "^3.24.2"
}
}