UNPKG

hnswsqlite

Version:

Vector search with HNSWlib and SQLite in TypeScript.

49 lines (48 loc) 1.12 kB
{ "name": "hnswsqlite", "version": "0.2.0", "description": "Vector search with HNSWlib and SQLite in TypeScript.", "main": "dist/index.js", "types": "dist/index.d.ts", "bin": { "hnswsqlite": "./dist/cli/index.js" }, "scripts": { "build": "tsc", "build:watch": "tsc --watch", "test": "jest", "cli": "ts-node src/cli/index.ts" }, "repository": { "type": "git", "url": "https://github.com/praveencs87/hnswsqlite.git" }, "keywords": [ "vector", "search", "sqlite", "hnswlib", "typescript", "semantic", "embeddings" ], "author": "Praveen CS <https://www.linkedin.com/in/praveen-cs/>", "license": "MIT", "dependencies": { "better-sqlite3": "^8.0.0", "hnswlib-node": "^1.4.2" }, "devDependencies": { "@types/axios": "^0.9.36", "@types/better-sqlite3": "^7.6.13", "@types/inquirer": "^9.0.8", "@types/jest": "^29.0.0", "@types/node": "^24.1.0", "axios": "^1.10.0", "commander": "^14.0.0", "inquirer": "^12.8.2", "jest": "^29.0.0", "ts-jest": "^29.4.0", "typescript": "^5.0.0" } }