cmpstr
Version:
CmpStr is a lightweight, fast and well performing package for calculating string similarity
65 lines • 2.04 kB
JSON
{
"name": "cmpstr",
"description": "CmpStr is a lightweight, fast and well performing package for calculating string similarity",
"license": "MIT",
"version": "3.0.1",
"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",
"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"
},
"type": "module",
"browser": "./dist/CmpStr.umd.min.js",
"exports": {
".": {
"types": "./dist/types/index.d.ts",
"require": "./dist/cjs/index.cjs",
"import": "./dist/esm/index.js"
}
},
"scripts": {
"test": "vitest run",
"build": "rollup -c && tsc --project tsconfig.build.json",
"lint": "tsc --project tsconfig.lint.json",
"clean": "rm -rf dist"
},
"devDependencies": {
"@rollup/plugin-commonjs": "^28.0.3",
"@rollup/plugin-node-resolve": "^16.0.1",
"@rollup/plugin-terser": "^0.4.4",
"@rollup/plugin-typescript": "^12.1.2",
"@types/node": "^22.15.23",
"prettier": "^3.5.3",
"rollup": "^4.41.1",
"rollup-plugin-prettier": "^4.1.2",
"tslib": "^2.8.1",
"typescript": "^5.8.3",
"vitest": "^3.2.2"
}
}