-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 970 Bytes
/
Copy pathpackage.json
File metadata and controls
37 lines (37 loc) · 970 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
34
35
36
37
{
"name": "gnaf-autocomplete",
"type": "module",
"private": true,
"scripts": {
"dev": "bun run --watch src/index.ts",
"start": "bun run src/index.ts",
"load": "bun run scripts/load.ts",
"test": "bun test",
"test:unit": "bun test tests/unit",
"test:integration": "bun test tests/integration",
"benchmark": "bun run benchmark/bench.ts",
"tsc": "tsc",
"lint": "biome check src/",
"format": "biome format --write src/",
"prepare": "command -v husky && husky || true"
},
"devDependencies": {
"@biomejs/biome": "^2.4.16",
"@types/bun": "latest",
"husky": "^9.1.7"
},
"peerDependencies": {
"typescript": "^5"
},
"dependencies": {
"@elysiajs/cors": "^1.4.2",
"@elysiajs/openapi": "^1.4.15",
"@t3-oss/env-core": "^0.13.11",
"elysia": "^1.4.28",
"elysia-rate-limit": "^4.6.2",
"linkedom": "^0.18.12",
"pino": "^10.3.1",
"postgres": "^3.4.5",
"zod": "^4.4.3"
}
}