-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
79 lines (79 loc) · 2.46 KB
/
Copy pathpackage.json
File metadata and controls
79 lines (79 loc) · 2.46 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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
{
"name": "@nebutra/knowledge-rag",
"version": "0.2.2",
"private": false,
"license": "MIT",
"type": "module",
"nebutra": {
"status": "foundation",
"productionReady": false,
"requires": [
"(none) — zero-config: in-memory vector store + deterministic local embedder",
"optional: OPENAI_API_KEY or OPENROUTER_API_KEY (real embeddings via @nebutra/agents)",
"optional: MEILISEARCH_URL / TYPESENSE_URL / ALGOLIA_APP_ID (keyword leg via @nebutra/search)",
"optional: DATABASE_URL (pgvector store)"
],
"gaps": [
"pgvector store is interface-only (Prisma snippet in README, not migrated)",
"reranker interface ships with identity impl only"
],
"featureId": "knowledge-rag",
"category": "ai",
"surface": "semantic-index",
"summary": "Knowledge retrieval grammar with zero-config local embedder and pluggable vector/keyword/rerank ports"
},
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
}
},
"files": [
"dist",
"README.md"
],
"scripts": {
"build": "tsc",
"typecheck": "tsc --noEmit",
"test": "vitest run",
"test:watch": "vitest"
},
"dependencies": {
"@nebutra/ai-primitives": "file:./vendor/nebutra__ai-primitives",
"@nebutra/agents": "file:./vendor/nebutra__agents",
"@nebutra/errors": "file:./vendor/nebutra__errors",
"@nebutra/local-embedding": "file:./vendor/nebutra__local-embedding",
"@nebutra/logger": "file:./vendor/nebutra__logger",
"@nebutra/search": "file:./vendor/nebutra__search",
"@nebutra/tenant-store": "file:./vendor/nebutra__tenant-store",
"p-timeout": "^7.0.1",
"zod": "^4.3.6"
},
"devDependencies": {
"typescript": "^5.9.3",
"vitest": "^4.1.4",
"@vitest/coverage-v8": "^4.1.4",
"@types/node": "^22.10.0"
},
"homepage": "https://github.com/Nebutra/knowledge-rag#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/Nebutra/knowledge-rag.git"
},
"publishConfig": {
"access": "public"
},
"bugs": {
"url": "https://github.com/Nebutra/knowledge-rag/issues"
},
"nebutraMirror": {
"sourceRepository": "Nebutra/Nebutra-Sailor",
"sourceDirectory": "packages/ai/knowledge-rag",
"sourcePackage": "@nebutra/knowledge-rag",
"sourceSha": "9c39bed5bc7249f9051d673f6afad33e6216c6f7",
"canonicalSource": "monorepo"
},
"packageManager": "pnpm@10.32.1"
}