ruvector 0.2.18 → 0.2.19
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +20 -7
- package/bin/cli.js +1430 -1553
- package/bin/mcp-server.js +277 -930
- package/package.json +19 -17
package/package.json
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "ruvector",
|
|
3
|
-
"version": "0.2.
|
|
4
|
-
"description": "
|
|
3
|
+
"version": "0.2.19",
|
|
4
|
+
"description": "Self-learning vector database for Node.js — hybrid search, Graph RAG, FlashAttention-3, DiskANN, 50+ attention mechanisms",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"types": "dist/index.d.ts",
|
|
7
7
|
"bin": {
|
|
8
8
|
"ruvector": "./bin/cli.js"
|
|
9
9
|
},
|
|
10
10
|
"scripts": {
|
|
11
|
-
"build": "tsc && cp
|
|
11
|
+
"build": "tsc && cp src/core/onnx/pkg/package.json dist/core/onnx/pkg/",
|
|
12
12
|
"prepublishOnly": "npm run build",
|
|
13
13
|
"test": "node test/integration.js && node test/cli-commands.js"
|
|
14
14
|
},
|
|
@@ -46,6 +46,12 @@
|
|
|
46
46
|
"shared-intelligence",
|
|
47
47
|
"mcp",
|
|
48
48
|
"edge-computing",
|
|
49
|
+
"graph-rag",
|
|
50
|
+
"diskann",
|
|
51
|
+
"hybrid-search",
|
|
52
|
+
"colbert",
|
|
53
|
+
"turboquant",
|
|
54
|
+
"mamba",
|
|
49
55
|
"pi-brain",
|
|
50
56
|
"identity",
|
|
51
57
|
"pi-key",
|
|
@@ -70,35 +76,31 @@
|
|
|
70
76
|
"@ruvector/sona": "^0.1.4",
|
|
71
77
|
"chalk": "^4.1.2",
|
|
72
78
|
"commander": "^11.1.0",
|
|
73
|
-
"glob": "^10.3.10",
|
|
74
79
|
"ora": "^5.4.1"
|
|
75
80
|
},
|
|
76
81
|
"optionalDependencies": {
|
|
77
82
|
"@ruvector/rvf": "^0.1.0"
|
|
78
83
|
},
|
|
79
84
|
"devDependencies": {
|
|
80
|
-
"@types/glob": "^8.1.0",
|
|
81
85
|
"@types/node": "^20.10.5",
|
|
82
86
|
"typescript": "^5.3.3"
|
|
83
87
|
},
|
|
84
|
-
"peerDependencies": {
|
|
85
|
-
"@ruvector/ruvllm": ">=2.0.0",
|
|
86
|
-
"@ruvector/router": ">=0.1.0"
|
|
87
|
-
},
|
|
88
|
-
"peerDependenciesMeta": {
|
|
89
|
-
"@ruvector/ruvllm": {
|
|
90
|
-
"optional": true
|
|
91
|
-
},
|
|
92
|
-
"@ruvector/router": {
|
|
93
|
-
"optional": true
|
|
94
|
-
}
|
|
95
|
-
},
|
|
96
88
|
"files": [
|
|
97
89
|
"bin/",
|
|
98
90
|
"dist/",
|
|
99
91
|
"README.md",
|
|
100
92
|
"LICENSE"
|
|
101
93
|
],
|
|
94
|
+
"peerDependencies": {
|
|
95
|
+
"@ruvector/pi-brain": ">=0.1.0",
|
|
96
|
+
"@ruvector/ruvllm": ">=2.0.0",
|
|
97
|
+
"@ruvector/router": ">=0.1.0"
|
|
98
|
+
},
|
|
99
|
+
"peerDependenciesMeta": {
|
|
100
|
+
"@ruvector/pi-brain": { "optional": true },
|
|
101
|
+
"@ruvector/ruvllm": { "optional": true },
|
|
102
|
+
"@ruvector/router": { "optional": true }
|
|
103
|
+
},
|
|
102
104
|
"engines": {
|
|
103
105
|
"node": ">=18.0.0"
|
|
104
106
|
}
|