-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
66 lines (66 loc) · 1.65 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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
{
"name": "vectorstore",
"description": "Local, cost-free vector store for text embeddings and similarity search (soon) in-browser and Node.js.",
"version": "0.0.4",
"type": "module",
"publishConfig": {
"access": "public"
},
"license": "MIT",
"keywords": [
"vector",
"search",
"cosine-similarity",
"embeddings",
"ai",
"open-source"
],
"repository": {
"url": "git+https://github.com/kyr0/vectorstore.git",
"type": "git"
},
"main": "./dist/index.cjs",
"module": "./dist/index.mjs",
"types": "./dist/index.d.cts",
"exports": {
"require": {
"types": "./dist/index.d.cts",
"default": "./dist/index.cjs"
},
"import": {
"types": "./dist/index.d.mts",
"default": "./dist/index.mjs"
}
},
"scripts": {
"e2e": "tsx scripts/e2e.ts",
"ngram": "tsx scripts/ngram.ts",
"wordlist": "tsx scripts/wordlist.ts",
"embed": "tsx scripts/embed.ts",
"tokenize-wordlist": "tsx scripts/tokenize-wordlist.ts",
"test": "vitest",
"build": "tsx scripts/build.ts"
},
"devDependencies": {
"@biomejs/biome": "^1.5.3",
"@jsheaven/easybuild": "^1.2.9",
"@swc-node/register": "^1.8.0",
"@types/node": "^20.11.20",
"@vitest/coverage-istanbul": "^1.3.1",
"cli-progress": "^3.12.0",
"conventional-changelog-cli": "^5.0.0",
"pkgroll": "^2.4.2",
"tsx": "^4.16.5",
"typescript": "^5.3.3",
"vitest": "^1.3.1"
},
"dependencies": {
"@xenova/transformers": "^2.17.2",
"cross-llm": "^0.1.3",
"dotenv": "^16.4.5",
"fast-dotproduct": "1.3.0",
"hnswlib-wasm": "^0.8.2",
"ml-matrix": "^6.11.1",
"numeric": "^1.2.6"
}
}