@propickler/localvectordb
Version:
A lightweight local vector database implementation in Node.js similar to ChromaDB
46 lines (45 loc) • 1.06 kB
JSON
{
"name": "@propickler/localvectordb",
"version": "1.0.0",
"description": "A lightweight local vector database implementation in Node.js similar to ChromaDB",
"main": "src/index.js",
"scripts": {
"test": "jest",
"test:unit": "jest tests/unit",
"test:integration": "jest tests/integration",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"start": "node src/index.js",
"prepare": "npm test"
},
"keywords": [
"vector-database",
"similarity-search",
"embeddings",
"chromadb",
"vector-search",
"hnsw",
"nearest-neighbors"
],
"author": "Anonymous",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/username/localvectordb.git"
},
"bugs": {
"url": "https://github.com/username/localvectordb/issues"
},
"engines": {
"node": ">=14.0.0"
},
"dependencies": {
"express": "^4.18.2",
"hnswlib-node": "^1.4.2",
"uuid": "^9.0.1"
},
"devDependencies": {
"jest": "^29.7.0",
"supertest": "^6.3.3"
}
}