verso-db 0.1.2 → 0.1.3

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/CHANGELOG.md +7 -0
  2. package/package.json +3 -2
package/CHANGELOG.md CHANGED
@@ -1,3 +1,10 @@
1
+ ## [0.1.3](https://github.com/briansunter/verso/compare/v0.1.2...v0.1.3) (2025-12-29)
2
+
3
+
4
+ ### Bug Fixes
5
+
6
+ * reorder exports for Bun compatibility ([13f7aeb](https://github.com/briansunter/verso/commit/13f7aebb555063c6dd52c5433a18eca916b2fb84))
7
+
1
8
  ## [0.1.2](https://github.com/briansunter/verso/compare/v0.1.1...v0.1.2) (2025-12-29)
2
9
 
3
10
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "verso-db",
3
- "version": "0.1.2",
3
+ "version": "0.1.3",
4
4
  "description": "High-performance vector search with HNSW indexing for Bun and Browser. 100% recall, 4x memory reduction with Int8 quantization.",
5
5
  "type": "module",
6
6
  "main": "./dist/index.js",
@@ -9,8 +9,9 @@
9
9
  "exports": {
10
10
  ".": {
11
11
  "types": "./dist/index.d.ts",
12
+ "bun": "./src/index.ts",
12
13
  "import": "./dist/index.js",
13
- "bun": "./src/index.ts"
14
+ "default": "./dist/index.js"
14
15
  },
15
16
  "./package.json": "./package.json"
16
17
  },