-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
114 lines (114 loc) · 3.3 KB
/
Copy pathpackage.json
File metadata and controls
114 lines (114 loc) · 3.3 KB
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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
{
"name": "@faiss-node/native",
"version": "0.1.11",
"description": "High-performance Node.js native bindings for Facebook FAISS with float and binary indexes, CLI tooling, optional GPU migration hooks, async operations, persistence, and vector utility helpers.",
"main": "src/js/index.js",
"types": "src/js/types.d.ts",
"bin": {
"faiss-node": "src/js/cli.js"
},
"repository": {
"type": "git",
"url": "https://github.com/anupammaurya6767/faiss-node-native.git"
},
"homepage": "https://github.com/anupammaurya6767/faiss-node-native#readme",
"bugs": {
"url": "https://github.com/anupammaurya6767/faiss-node-native/issues"
},
"files": [
"src/",
"binding.gyp",
"README.md",
"API.md",
"LICENSE"
],
"author": "Anupam Maurya <anupammaurya6767@gmail.com>",
"license": "MIT",
"keywords": [
"faiss",
"faiss-node",
"faiss-nodejs",
"facebook-faiss",
"vector",
"vector-search",
"vector-similarity",
"similarity",
"search",
"embedding",
"embeddings",
"nearest-neighbor",
"nearest-neighbors",
"knn",
"k-nearest-neighbors",
"ann",
"approximate-nearest-neighbor",
"approximate-nearest-neighbor-search",
"machine-learning",
"ml",
"ai",
"artificial-intelligence",
"semantic-search",
"semantic-similarity",
"rag",
"retrieval-augmented-generation",
"vector-database",
"vector-db",
"nodejs",
"node",
"node.js",
"native",
"native-bindings",
"bindings",
"c++",
"cpp",
"performance",
"fast",
"high-performance",
"cosine-similarity",
"inner-product",
"l2-distance",
"euclidean-distance",
"indexflat",
"indexivf",
"hnsw",
"hierarchical-nsw",
"ivf",
"binary-vectors",
"hamming-distance",
"gpu"
],
"scripts": {
"build": "node-gyp rebuild",
"clean": "node-gyp clean",
"cli": "node src/js/cli.js",
"test": "jest",
"test:ci": "jest --ci --coverage --config=jest.ci.config.js --testPathIgnorePatterns=manual",
"test:unit": "jest test/unit",
"test:integration": "jest test/integration",
"test:watch": "jest --watch",
"test:memory": "node --expose-gc test/memory.test.js",
"test:local": "npm run clean && npm run build && npm test",
"ci:status": "bash scripts/check-ci-status.sh",
"docs": "npm run docs:js && npm run docs:cpp",
"docs:js": "typedoc",
"docs:cpp": "doxygen Doxyfile",
"docs:watch": "npm run docs:js -- --watch",
"docs:serve": "cd docs/api && python3 -m http.server 8000",
"docs:serve:cpp": "cd docs/html && python3 -m http.server 8001",
"docs:auto": "npm run docs && npm run docs:serve",
"prepublishOnly": "npm run docs",
"publish:local": "bash -c 'export NODE_AUTH_TOKEN=$(grep NPM_TOKEN .env | cut -d \\\"=\\\" -f2) && npm config set //registry.npmjs.org/:_authToken $NODE_AUTH_TOKEN && npm publish --access public'",
"publish:dry-run": "bash -c 'export NODE_AUTH_TOKEN=$(grep NPM_TOKEN .env | cut -d \\\"=\\\" -f2) && npm config set //registry.npmjs.org/:_authToken $NODE_AUTH_TOKEN && npm publish --access public --dry-run'"
},
"engines": {
"node": ">=18.0.0"
},
"devDependencies": {
"express": "^4.22.1",
"jest": "^29.7.0",
"typedoc": "^0.25.0"
},
"dependencies": {
"node-addon-api": "^7.0.0"
}
}