hnsw-lite
Version:
A lightweight HNSW implementation for nearest neighbor search.
40 lines (39 loc) • 929 B
JSON
{
"name": "hnsw-lite",
"version": "1.0.0-beta.1",
"description": "A lightweight HNSW implementation for nearest neighbor search.",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"test": "jest",
"build": "tsc",
"start": "node dist/index.js",
"prepublishOnly": "npm run build"
},
"keywords": [
"hnsw",
"nearest-neighbor",
"search",
"algorithm"
],
"author": "",
"license": "ISC",
"repository": {
"type": "git",
"url": "git+https://github.com/darshandesai1095/hnsw_lite.git"
},
"bugs": {
"url": "https://github.com/darshandesai1095/hnsw_lite/issues"
},
"homepage": "https://github.com/darshandesai1095/hnsw_lite#readme",
"devDependencies": {
"@types/jest": "^29.5.14",
"@types/node": "^22.10.10",
"jest": "^29.7.0",
"ts-jest": "^29.2.5",
"typescript": "^5.7.3"
},
"publishConfig": {
"access": "public"
}
}