@kitedb/core 0.2.5 → 0.2.6

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.
Files changed (2) hide show
  1. package/README.md +2 -2
  2. package/package.json +6 -6
package/README.md CHANGED
@@ -2,7 +2,7 @@
2
2
 
3
3
  KiteDB native bindings for Node.js (and WASI/browser builds), powered by Rust + N-API.
4
4
 
5
- Docs: https://ray-kwaf.vercel.app/docs
5
+ Docs: https://kitedb.vercel.com/docs
6
6
 
7
7
  ## Install
8
8
 
@@ -165,7 +165,7 @@ This is implemented using a read-write lock (RwLock) internally, providing good
165
165
 
166
166
  The Node bindings expose both low-level graph primitives (`Database`) and higher-level APIs (Ray) for schema-driven workflows, plus metrics, backups, traversal, and vector search. For full API details and guides, see the docs:
167
167
 
168
- https://ray-kwaf.vercel.app/docs
168
+ https://kitedb.vercel.com/docs
169
169
 
170
170
  ## License
171
171
 
package/package.json CHANGED
@@ -1,9 +1,9 @@
1
1
  {
2
2
  "name": "@kitedb/core",
3
- "version": "0.2.5",
3
+ "version": "0.2.6",
4
4
  "description": "KiteDB - High-performance embedded graph database with vector search",
5
5
  "author": "mask <mask@mask.dev>",
6
- "homepage": "https://ray-kwaf.vercel.app/",
6
+ "homepage": "https://kitedb.vercel.com/",
7
7
  "main": "dist/index.js",
8
8
  "module": "dist/index.js",
9
9
  "types": "dist/index.d.ts",
@@ -136,9 +136,9 @@
136
136
  },
137
137
  "packageManager": "bun@1.2.4",
138
138
  "optionalDependencies": {
139
- "@kitedb/core-win32-x64-msvc": "0.2.5",
140
- "@kitedb/core-darwin-x64": "0.2.5",
141
- "@kitedb/core-linux-x64-gnu": "0.2.5",
142
- "@kitedb/core-darwin-arm64": "0.2.5"
139
+ "@kitedb/core-win32-x64-msvc": "0.2.6",
140
+ "@kitedb/core-darwin-x64": "0.2.6",
141
+ "@kitedb/core-linux-x64-gnu": "0.2.6",
142
+ "@kitedb/core-darwin-arm64": "0.2.6"
143
143
  }
144
144
  }