-
Notifications
You must be signed in to change notification settings - Fork 11
/
package.json
64 lines (64 loc) · 1.83 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
{
"name": "faiss-node",
"version": "0.5.1",
"description": "Node.js bindings for faiss",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"gypfile": true,
"engines": {
"node": ">= 14.0.0"
},
"binary": {
"napi_versions": [
6,
7,
8
]
},
"scripts": {
"build:debug": "cmake-js compile -DCMAKE_BUILD_TYPE=Debug",
"build": "cmake-js compile",
"build:clean": "cmake-js clean",
"build:test": "npm run build && npm run test",
"prebuild-package": "prebuild --verbose --runtime napi --include-regex \"^(faiss-node\\.node)|(mkl_sequential\\.2\\.dll)|(faiss\\.lib)|(libfaiss\\.a)|(libmkl_intel_lp64\\.so)|(libmkl_sequential\\.so)|(libmkl_core\\.so)|(libomp\\.dylib)|(libgomp\\.so\\.1)|(libopenblas\\.so\\.3)|(libopenblas\\.so\\.0)|(libgfortran\\.so\\.5)|(libquadmath\\.so\\.0)$\" --backend cmake-js",
"install": "prebuild-install --runtime napi --verbose || (git clone -b v1.7.4 --depth 1 https://github.com/facebookresearch/faiss.git deps/faiss && npm i cmake-js && npm run build)",
"test": "jest",
"doc": "typedoc --includeVersion"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ewfian/faiss-node.git"
},
"author": "ewfian",
"license": "MIT",
"keywords": [
"faiss",
"approximate",
"nearest",
"neighbor",
"search",
"face",
"matching",
"machine learning",
"feature",
"vector",
"indexing",
"similarity search",
"embeddings"
],
"bugs": {
"url": "https://github.com/ewfian/faiss-node/issues"
},
"homepage": "https://github.com/ewfian/faiss-node#readme",
"devDependencies": {
"cmake-js": "^7.2.1",
"jest": "^29.5.0",
"prebuild": "^11.0.4",
"typedoc": "^0.23.28"
},
"dependencies": {
"bindings": "^1.5.0",
"node-addon-api": "^6.0.0",
"prebuild-install": "^7.1.1"
}
}