-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.35 KB
/
Copy pathpackage.json
File metadata and controls
45 lines (45 loc) · 1.35 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
44
45
{
"name": "@canarycoders/ai-rag",
"version": "0.2.0",
"description": "Bun-first RAG toolkit for CanaryCoders AI: parse, chunk, embed (via the gateway) and store vectors in your own pgvector/sqlite store. Nothing leaves your infrastructure except transient embedding calls.",
"license": "MIT",
"author": "CanaryCoders",
"type": "module",
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
},
"main": "./dist/index.cjs",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"require": "./dist/index.cjs"
},
"./store/pgvector": {
"types": "./dist/store/pgvector.d.ts",
"import": "./dist/store/pgvector.js",
"require": "./dist/store/pgvector.cjs"
}
},
"files": ["dist", "README.md", "LICENSE"],
"scripts": {
"typecheck": "tsc --noEmit",
"test": "bun test test/unit",
"build": "tsup",
"prepare": "tsup",
"prepublishOnly": "bun run build && bun run typecheck && bun run test"
},
"keywords": ["canaryllm", "rag", "embeddings", "pgvector", "retrieval", "bun"],
"engines": { "node": ">=18" },
"dependencies": {
"@canarycoders/ai": "^0.3.0"
},
"devDependencies": {
"@types/bun": "latest",
"tsup": "^8.0.0",
"typescript": "^5.5.0"
}
}