@thinletterio/vqweb 0.1.0
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/LICENSE +202 -0
- package/NOTICE +35 -0
- package/README.md +118 -0
- package/dist/vqweb.d.ts +131 -0
- package/dist/vqweb.js +4121 -0
- package/package.json +59 -0
package/package.json
ADDED
|
@@ -0,0 +1,59 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@thinletterio/vqweb",
|
|
3
|
+
"version": "0.1.0",
|
|
4
|
+
"description": "Vector-quantised query encoders (.vqw containers) in the browser on WebGPU: load a 105-240 MiB file, embed a query in ~100 ms, keep your document index unchanged.",
|
|
5
|
+
"type": "module",
|
|
6
|
+
"main": "./dist/vqweb.js",
|
|
7
|
+
"module": "./dist/vqweb.js",
|
|
8
|
+
"types": "./dist/vqweb.d.ts",
|
|
9
|
+
"exports": {
|
|
10
|
+
".": {
|
|
11
|
+
"types": "./dist/vqweb.d.ts",
|
|
12
|
+
"default": "./dist/vqweb.js"
|
|
13
|
+
}
|
|
14
|
+
},
|
|
15
|
+
"files": [
|
|
16
|
+
"dist",
|
|
17
|
+
"README.md",
|
|
18
|
+
"LICENSE",
|
|
19
|
+
"NOTICE"
|
|
20
|
+
],
|
|
21
|
+
"sideEffects": false,
|
|
22
|
+
"scripts": {
|
|
23
|
+
"build": "node build.mjs",
|
|
24
|
+
"test": "node test/node.test.mjs",
|
|
25
|
+
"prepublishOnly": "node build.mjs && node test/node.test.mjs"
|
|
26
|
+
},
|
|
27
|
+
"keywords": [
|
|
28
|
+
"webgpu",
|
|
29
|
+
"embeddings",
|
|
30
|
+
"vector-quantization",
|
|
31
|
+
"retrieval",
|
|
32
|
+
"query-encoder",
|
|
33
|
+
"qwen3",
|
|
34
|
+
"browser",
|
|
35
|
+
"on-device"
|
|
36
|
+
],
|
|
37
|
+
"author": "thinletter <info@thinletter.io>",
|
|
38
|
+
"license": "Apache-2.0",
|
|
39
|
+
"homepage": "https://thinletter.io",
|
|
40
|
+
"repository": {
|
|
41
|
+
"type": "git",
|
|
42
|
+
"url": "https://github.com/rosecky/embedding-quantization-public.git",
|
|
43
|
+
"directory": "packages/vqweb"
|
|
44
|
+
},
|
|
45
|
+
"bugs": {
|
|
46
|
+
"url": "https://github.com/rosecky/embedding-quantization-public/issues"
|
|
47
|
+
},
|
|
48
|
+
"peerDependencies": {
|
|
49
|
+
"@webgpu/types": "*"
|
|
50
|
+
},
|
|
51
|
+
"peerDependenciesMeta": {
|
|
52
|
+
"@webgpu/types": {
|
|
53
|
+
"optional": true
|
|
54
|
+
}
|
|
55
|
+
},
|
|
56
|
+
"devDependencies": {
|
|
57
|
+
"esbuild": "^0.25.0"
|
|
58
|
+
}
|
|
59
|
+
}
|