ruvector 0.1.4 → 0.1.5

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.
@@ -1,7 +1,7 @@
1
1
  {
2
- "startTime": 1763752561942,
3
- "sessionId": "session-1763752561942",
4
- "lastActivity": 1763752561942,
2
+ "startTime": 1763756440172,
3
+ "sessionId": "session-1763756440172",
4
+ "lastActivity": 1763756440172,
5
5
  "sessionDuration": 0,
6
6
  "totalTasks": 1,
7
7
  "successfulTasks": 1,
@@ -1,10 +1,10 @@
1
1
  [
2
2
  {
3
- "id": "cmd-hooks-1763752562144",
3
+ "id": "cmd-hooks-1763756440446",
4
4
  "type": "hooks",
5
5
  "success": true,
6
- "duration": 22.63396399999999,
7
- "timestamp": 1763752562167,
6
+ "duration": 57.10047099999997,
7
+ "timestamp": 1763756440503,
8
8
  "metadata": {}
9
9
  }
10
10
  ]
package/dist/index.js CHANGED
@@ -31,7 +31,7 @@ let implementation;
31
31
  let implementationType = 'wasm';
32
32
  try {
33
33
  // Try to load native module first
34
- implementation = require('@ruvector/core');
34
+ implementation = require('ruvector-core');
35
35
  implementationType = 'native';
36
36
  // Verify it's actually working
37
37
  if (typeof implementation.VectorDB !== 'function') {
@@ -45,7 +45,7 @@ catch (e) {
45
45
  console.warn('[ruvector] Falling back to WASM implementation');
46
46
  }
47
47
  try {
48
- implementation = require('@ruvector/wasm');
48
+ implementation = require('ruvector-wasm');
49
49
  implementationType = 'wasm';
50
50
  }
51
51
  catch (wasmError) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "ruvector",
3
- "version": "0.1.4",
3
+ "version": "0.1.5",
4
4
  "description": "High-performance vector database for Node.js with automatic native/WASM fallback",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",