-
Notifications
You must be signed in to change notification settings - Fork 10
/
package.json
44 lines (44 loc) · 1.14 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
{
"name": "client-vector-search",
"version": "0.2.0",
"description": "A client side vector search library",
"main": "dist/index.js",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"scripts": {
"build": "tsup src/index.ts --format cjs,esm --dts",
"dev": "tsup src/index.ts --format cjs,esm --dts --watch",
"changeset": "changeset",
"version": "changeset version",
"release": "npm run build && changeset publish",
"lint": "tsc"
},
"repository": {
"type": "git",
"url": "git+https://github.com/yusufhilmi/client-vector-search.git"
},
"keywords": [
"vector",
"search",
"embeddings",
"nlp",
"models"
],
"author": "yusufhilmi",
"license": "MIT",
"bugs": {
"url": "https://github.com/yusufhilmi/client-vector-search/issues"
},
"homepage": "https://github.com/yusufhilmi/client-vector-search#readme",
"devDependencies": {
"@changesets/cli": "^2.26.2",
"fake-indexeddb": "^4.0.2",
"tsup": "^6.5.0",
"typescript": "^4.9.5"
},
"dependencies": {
"@msgpack/msgpack": "^3.0.0-beta2",
"@xenova/transformers": "^2.5.2",
"lru-cache": "^10.0.1"
}
}