-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
45 lines (45 loc) · 1 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
{
"name": "fastembed",
"version": "1.14.1",
"description": "NodeJS implementation of @Qdrant/fastembed",
"licenses": [
{
"type": "MIT",
"url": "https://github.com/Anush008/fastembed-js/LICENSE"
}
],
"publishConfig": {
"provenance": true
},
"repository": "https://github.com/Anush008/fastembed-js",
"scripts": {
"test": "npm run tsc && vitest",
"tsc": "tsc -p tsconfig.json && tsc -p tsconfig-cjs.json",
"prepublishOnly": "npm run tsc"
},
"main": "./lib/cjs/index.js",
"module": "./lib/esm/index.js",
"files": [
"lib/"
],
"keywords": [
"embeddings",
"fastembed",
"onnxruntime",
"semantic",
"search"
],
"author": "Anush008 <[email protected]>",
"devDependencies": {
"@types/progress": "^2.0.5",
"@types/tar": "^6.1.6",
"typescript": "^5.2.2",
"vitest": "^0.34.4"
},
"dependencies": {
"@anush008/tokenizers": "^0.0.0",
"onnxruntime-node": "1.15.1",
"progress": "^2.0.3",
"tar": "^6.2.0"
}
}