UNPKG

cmpstr

Version:

CmpStr is a lightweight, fast and well performing package for calculating string similarity

74 lines (73 loc) 2.33 kB
{ "name": "cmpstr", "description": "CmpStr is a lightweight, fast and well performing package for calculating string similarity", "license": "MIT", "version": "3.0.4", "author": { "name": "komed3 (Paul Köhler)", "email": "webmaster@komed3.de", "url": "https://komed3.de" }, "homepage": "https://github.com/komed3/cmpstr", "keywords": [ "string-similarity", "string-comparison", "fuzzy-matching", "phonetic-search", "phonetic-algorithms", "similarity-metrics", "batch-processing", "text-search", "pairwise-comparison", "normalization", "filtering", "text-analysis", "diff", "diffing", "typescript", "asynchronous", "custom-algorithms", "metrics", "algorithms", "levenshtein", "damerau-levenshtein", "jaro-winkler", "cosine", "dice-coefficient", "hamming-distance", "jaccard-index", "needleman-wunsch", "lcs", "smith-waterman", "q-gram", "soundex", "metaphone", "cologne-phonetic", "caverphone", "profiling", "extensible" ], "repository": { "type": "git", "url": "git+https://github.com/komed3/cmpstr.git" }, "bugs": { "url": "https://github.com/komed3/cmpstr/issues" }, "files": [ "dist", "README.md", "LICENSE" ], "engines": { "node": ">=18.0.0" }, "types": "./dist/types/index.d.ts", "browser": "./dist/CmpStr.umd.min.js", "main": "./dist/cjs/index.cjs", "module": "./dist/esm/index.mjs", "exports": { ".": { "types": "./dist/types/index.d.ts", "require": "./dist/cjs/index.cjs", "import": "./dist/esm/index.mjs" }, "./root": { "types": "./dist/types/root.d.ts", "require": "./dist/cjs/root.cjs", "import": "./dist/esm/root.mjs" } }, "scripts": { "test": "vitest run", "build": "rollup -c && tsc --project tsconfig.declaration.json", "lint": "tsc --project tsconfig.lint.json", "clean": "rm -rf dist" }, "devDependencies": { "@rollup/plugin-commonjs": "^28.0.6", "@rollup/plugin-node-resolve": "^16.0.1", "@rollup/plugin-terser": "^0.4.4", "@rollup/plugin-typescript": "^12.1.4", "@types/node": "^24.4.0", "prettier": "^3.6.2", "rollup": "^4.50.2", "rollup-plugin-cleanup": "^3.2.1", "rollup-plugin-prettier": "^4.1.2", "tslib": "^2.8.1", "typescript": "^5.9.2", "vitest": "^3.2.4" } }