@ai4data/search 0.1.5 → 0.1.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.
- package/README.md +36 -4
- package/dist/index.d.mts +24 -0
- package/dist/index.mjs +1 -1
- package/dist/index.mjs.map +1 -1
- package/dist/worker.mjs +23 -23
- package/dist/worker.mjs.map +1 -1
- package/package.json +2 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@ai4data/search",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.6",
|
|
4
4
|
"description": "Framework-agnostic semantic search client: HNSW, BM25, hybrid ranking in a Web Worker",
|
|
5
5
|
"main": "dist/index.mjs",
|
|
6
6
|
"module": "dist/index.mjs",
|
|
@@ -26,6 +26,7 @@
|
|
|
26
26
|
"scripts": {
|
|
27
27
|
"build": "tsup",
|
|
28
28
|
"demo": "npm run build && npx serve . -p 5173",
|
|
29
|
+
"demo:proxy": "npm run build && node demo/proxy-server.mjs",
|
|
29
30
|
"prepublishOnly": "npm run build",
|
|
30
31
|
"test": "echo 'Add smoke test if desired'",
|
|
31
32
|
"lint": "echo 'Add ESLint if desired'"
|