-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.01 KB
/
Copy pathpackage.json
File metadata and controls
43 lines (43 loc) · 1.01 KB
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
38
39
40
41
42
43
{
"name": "up-vector",
"version": "0.1.0",
"description": "Self-hosted Upstash Vector-compatible HTTP proxy backed by Redis Stack",
"type": "module",
"scripts": {
"dev": "bun run --watch src/index.ts",
"start": "bun run src/index.ts",
"build": "bun build src/index.ts --target=bun --outdir=dist --minify",
"test": "bun test",
"test:unit": "bun test tests/unit",
"test:integration": "bun test tests/integration",
"lint": "biome check .",
"lint:fix": "biome check --write .",
"format": "biome format --write .",
"typecheck": "tsc --noEmit"
},
"dependencies": {
"hono": "^4.13.3",
"zod": "^4.4.3"
},
"devDependencies": {
"@biomejs/biome": "^2.5.10",
"@types/bun": "^1.4.0",
"@upstash/vector": "^1.2.3",
"typescript": "^6.0.3"
},
"license": "MIT",
"author": "Ben <hello@benjsmin.com>",
"repository": {
"type": "git",
"url": "https://github.com/Coriou/up-vector"
},
"keywords": [
"upstash",
"vector",
"redis",
"self-hosted",
"similarity-search",
"rag",
"vector-database"
]
}