mirror of
https://github.com/ruvnet/RuVector.git
synced 2026-06-02 07:29:19 +00:00
chore: bump and publish npm packages
Published to npm: - @ruvector/ruvf 0.1.2 - @ruvector/rvf-wasm 0.1.1 - @ruvector/rvf-node 0.1.1 - @ruvector/rvf-mcp-server 0.1.1 - ruvector 0.1.98 - rvlite 0.2.3 Co-Authored-By: claude-flow <ruv@ruv.net>
This commit is contained in:
parent
fb6bd64685
commit
be282afec7
6 changed files with 33 additions and 12 deletions
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "ruvector",
|
||||
"version": "0.1.97",
|
||||
"version": "0.1.98",
|
||||
"description": "High-performance vector database for Node.js with automatic native/WASM fallback",
|
||||
"main": "dist/index.js",
|
||||
"types": "dist/index.d.ts",
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "@ruvector/rvf-mcp-server",
|
||||
"version": "0.1.0",
|
||||
"version": "0.1.1",
|
||||
"description": "MCP server for RuVector Format (RVF) vector database — stdio and SSE transports",
|
||||
"type": "module",
|
||||
"main": "dist/index.js",
|
||||
|
|
@ -21,14 +21,20 @@
|
|||
"start:sse": "node dist/cli.js --transport sse --port 3100",
|
||||
"dev": "tsc --watch"
|
||||
},
|
||||
"keywords": ["rvf", "ruvector", "mcp", "vector-database", "model-context-protocol"],
|
||||
"keywords": [
|
||||
"rvf",
|
||||
"ruvector",
|
||||
"mcp",
|
||||
"vector-database",
|
||||
"model-context-protocol"
|
||||
],
|
||||
"license": "MIT",
|
||||
"engines": {
|
||||
"node": ">=18.0.0"
|
||||
},
|
||||
"dependencies": {
|
||||
"@modelcontextprotocol/sdk": "^1.0.0",
|
||||
"@ruvector/rvf": "workspace:*",
|
||||
"@ruvector/rvf": "^0.1.2",
|
||||
"express": "^4.18.0",
|
||||
"zod": "^3.22.0"
|
||||
},
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "@ruvector/rvf-node",
|
||||
"version": "0.1.0",
|
||||
"version": "0.1.1",
|
||||
"description": "RuVector Format Node.js native bindings",
|
||||
"main": "index.js",
|
||||
"types": "index.d.ts",
|
||||
|
|
@ -8,7 +8,10 @@
|
|||
"name": "rvf-node",
|
||||
"triples": {
|
||||
"defaults": true,
|
||||
"additional": ["aarch64-apple-darwin", "aarch64-unknown-linux-gnu"]
|
||||
"additional": [
|
||||
"aarch64-apple-darwin",
|
||||
"aarch64-unknown-linux-gnu"
|
||||
]
|
||||
}
|
||||
},
|
||||
"scripts": {
|
||||
|
|
|
|||
|
|
@ -1,10 +1,12 @@
|
|||
{
|
||||
"name": "@ruvector/rvf-wasm",
|
||||
"version": "0.1.0",
|
||||
"version": "0.1.1",
|
||||
"description": "RuVector Format WASM build for browsers",
|
||||
"main": "pkg/rvf_runtime.js",
|
||||
"types": "pkg/rvf_runtime.d.ts",
|
||||
"files": ["pkg/"],
|
||||
"files": [
|
||||
"pkg/"
|
||||
],
|
||||
"scripts": {
|
||||
"build": "wasm-pack build ../../crates/rvf/rvf-runtime --target web --out-dir ../../npm/packages/rvf-wasm/pkg --features wasm"
|
||||
},
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "@ruvector/rvf",
|
||||
"version": "0.1.1",
|
||||
"version": "0.1.2",
|
||||
"description": "RuVector Format — unified TypeScript SDK for vector intelligence",
|
||||
"main": "dist/index.js",
|
||||
"module": "dist/index.js",
|
||||
|
|
@ -12,14 +12,24 @@
|
|||
"require": "./dist/index.js"
|
||||
}
|
||||
},
|
||||
"files": ["dist/", "package.json"],
|
||||
"files": [
|
||||
"dist/",
|
||||
"package.json"
|
||||
],
|
||||
"scripts": {
|
||||
"build": "tsc",
|
||||
"test": "jest",
|
||||
"bench": "tsx bench/index.ts",
|
||||
"typecheck": "tsc --noEmit"
|
||||
},
|
||||
"keywords": ["vector", "database", "binary-format", "hnsw", "simd", "rvf"],
|
||||
"keywords": [
|
||||
"vector",
|
||||
"database",
|
||||
"binary-format",
|
||||
"hnsw",
|
||||
"simd",
|
||||
"rvf"
|
||||
],
|
||||
"license": "MIT",
|
||||
"repository": "https://github.com/ruvnet/ruvector",
|
||||
"dependencies": {
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "rvlite",
|
||||
"version": "0.2.2",
|
||||
"version": "0.2.3",
|
||||
"type": "module",
|
||||
"description": "Lightweight vector database with SQL, SPARQL, and Cypher - runs everywhere (Node.js, Browser, Edge)",
|
||||
"main": "dist/index.js",
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue