native-vector-store
Version:
High-performance local vector store with SIMD optimization for MCP servers
76 lines (75 loc) • 1.8 kB
JSON
{
"name": "native-vector-store",
"version": "0.4.0",
"description": "High-performance local vector store with SIMD optimization for MCP servers",
"main": "index.js",
"types": "lib/index.d.ts",
"author": "Martin Boros <mboros04@gmail.com>",
"license": "Apache 2.0",
"repository": {
"type": "git",
"url": "git+https://github.com/mboros1/native-vector-store.git"
},
"bugs": {
"url": "https://github.com/mboros1/native-vector-store/issues"
},
"homepage": "https://mboros1.github.io/native-vector-store/",
"scripts": {
"build": "node-gyp rebuild",
"clean": "node-gyp clean",
"test": "node test/test.js",
"install": "node-gyp-build",
"prebuildify": "prebuildify --napi --strip",
"prebuildify-cross": "prebuildify-cross -i centos7-devtoolset7 -i alpine -i linux-arm64 -i darwin-arm64 -i darwin-x64+arm64",
"benchmark": "node test/test.js",
"example": "node examples/mcp-server.js demo",
"embed": "node embed_dir.js",
"docs": "jsdoc -c jsdoc.json",
"prepublishOnly": "npm run docs"
},
"keywords": [
"vector",
"embedding",
"similarity",
"search",
"simd",
"mcp"
],
"dependencies": {
"dotenv": "^17.2.0",
"node-addon-api": "^7.0.0",
"node-gyp-build": "^4.8.4",
"openai": "^5.8.3"
},
"optionalDependencies": {
"@modelcontextprotocol/sdk": "^1.15.1"
},
"devDependencies": {
"jsdoc": "^4.0.4",
"node-gyp": "^10.0.0",
"prebuildify": "^6.0.0",
"prebuildify-cross": "^5.0.0"
},
"os": [
"darwin",
"linux",
"win32"
],
"cpu": [
"x64",
"arm64"
],
"engines": {
"node": ">=14.0.0"
},
"gypfile": true,
"files": [
"index.js",
"lib/",
"src/",
"deps/",
"binding.gyp",
"prebuilds/",
"docs/"
]
}