cmpstr-cli
Version:
simple CLI wrapper for the cmpstr package to normalize and compare strings directly via terminal
73 lines (72 loc) • 1.61 kB
JSON
{
"name": "cmpstr-cli",
"description": "simple CLI wrapper for the cmpstr package to normalize and compare strings directly via terminal",
"author": {
"name": "komed3 (Paul Köhler)",
"email": "webmaster@komed3.de",
"url": "https://komed3.de"
},
"homepage": "https://github.com/komed3/cmpstr-cli#readme",
"version": "1.0.1",
"license": "MIT",
"type": "module",
"bin": {
"cmpstr": "./dist/index.js"
},
"files": [
"dist",
"default.yaml",
"README.md",
"LICENSE"
],
"dependencies": {
"chalk": "^5.4.1",
"cmpstr": "^2.0.3",
"commander": "^13.1.0",
"yaml": "^2.7.1"
},
"devDependencies": {
"@types/node": "^22.14.0",
"typescript": "^5.8.3"
},
"scripts": {
"build": "tsc",
"start": "node dist/index.js"
},
"keywords": [
"cli-tool",
"cli-wrapper",
"string-similarity",
"string-comparison",
"similarity-algorithms",
"phonetic-search",
"soundex",
"levenshtein-distance",
"damerau-levenshtein",
"jaro-winkler",
"cosine-similarity",
"dice-coefficient",
"jaccard-index",
"hamming-distance",
"longest-common-subsequence",
"needleman-wunsch",
"smith-waterman",
"q-gram",
"similarity-matrix",
"batch-operations",
"normalization",
"asynchronous",
"custom-algorithms",
"text-processing",
"fuzzy-matching",
"string-matching",
"text-similarity"
],
"repository": {
"type": "git",
"url": "git+https://github.com/komed3/cmpstr-cli.git"
},
"bugs": {
"url": "https://github.com/komed3/cmpstr-cli/issues"
}
}