superminhash
Version:
TypeScript implementation of the SuperMinHash algorithm for Jaccard similarity estimation
45 lines (44 loc) • 1.34 kB
JSON
{
"name": "superminhash",
"version": "1.0.0",
"type": "module",
"author": "Pierre (https://pierre.gg)",
"license": "MIT",
"description": "TypeScript implementation of the SuperMinHash algorithm for Jaccard similarity estimation",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"bugs": {
"url": "https://github.com/thedebian/superminhash/issues"
},
"homepage": "https://github.com/thedebian/superminhash",
"scripts": {
"build": "tsc",
"test": "jest",
"prepare": "npm run build",
"format": "prettier . --write",
"lint": "eslint --config eslint.config.js --fix .",
"lint:check": "eslint --config eslint.config.js .",
"lint:fix-dry": "eslint --config eslint.config.js --fix-dry-run ."
},
"keywords": [
"minhash",
"superminhash",
"jaccard",
"similarity",
"locality-sensitive-hashing"
],
"dependencies": {
"seedrandom": "^3.0.5"
},
"devDependencies": {
"@types/jest": "^29.0.0",
"@types/node": "^18.0.0",
"@types/seedrandom": "^3.0.5",
"eslint": "^9.23.0",
"jest": "^29.0.0",
"prettier": "^3.5.3",
"ts-jest": "^29.0.0",
"typescript": "^5.0.0",
"typescript-eslint": "^8.28.0"
}
}