-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
128 lines (128 loc) · 3.12 KB
/
Copy pathpackage.json
File metadata and controls
128 lines (128 loc) · 3.12 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
{
"name": "cmpstr",
"description": "CmpStr is a lightweight, fast and well performing package for calculating string similarity",
"license": "MIT",
"version": "3.3.0",
"author": {
"name": "komed3 (Paul Köhler)",
"email": "webmaster@komed3.de",
"url": "https://komed3.de"
},
"homepage": "https://komed3.github.io/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",
"lightweight",
"fast",
"performance",
"npm",
"nodejs",
"browser",
"structured-data"
],
"repository": {
"type": "git",
"url": "git+https://github.com/komed3/cmpstr.git"
},
"bugs": {
"url": "https://github.com/komed3/cmpstr/issues"
},
"funding": {
"type": "ko-fi",
"url": "https://ko-fi.com/komed3"
},
"files": [
"dist",
"README.md",
"LICENSE"
],
"engines": {
"node": ">=18.0.0"
},
"types": "./dist/types/index.d.ts",
"main": "./dist/cjs/index.cjs",
"exports": {
".": {
"browser": "./dist/CmpStr.umd.min.js",
"types": "./dist/types/index.d.ts",
"import": "./dist/esm/index.mjs",
"require": "./dist/cjs/index.cjs",
"default": "./dist/esm/index.mjs"
},
"./root": {
"types": "./dist/types/root.d.ts",
"require": "./dist/cjs/root.cjs",
"import": "./dist/esm/root.mjs",
"default": "./dist/esm/root.mjs"
},
"./bundle": {
"import": "./dist/CmpStr.esm.js",
"default": "./dist/CmpStr.esm.js"
},
"./bundle/min": {
"import": "./dist/CmpStr.esm.min.js",
"default": "./dist/CmpStr.esm.min.js"
}
},
"scripts": {
"clean": "shx rm -rf dist",
"lint": "tsc --project tsconfig.lint.json",
"test": "vitest run",
"build": "rollup -c && tsc --project tsconfig.declaration.json",
"build:clean": "npm run clean && npm run build",
"docs": "typedoc --logLevel Verbose --options typedoc.json"
},
"devDependencies": {
"@rollup/plugin-commonjs": "^29.0.3",
"@rollup/plugin-node-resolve": "^16.0.3",
"@rollup/plugin-terser": "^1.0.0",
"@rollup/plugin-typescript": "^12.3.0",
"@types/node": "^26.0.0",
"package-verify": "^1.0.3",
"prettier": "^3.8.4",
"rollup": "^4.62.2",
"rollup-plugin-cleanup": "^3.2.1",
"rollup-plugin-prettier": "^4.1.2",
"shx": "^0.4.0",
"tslib": "^2.8.1",
"typedoc": "^0.28.19",
"typedoc-github-theme": "^0.4.0",
"typedoc-plugin-missing-exports": "^4.1.3",
"typescript": "^6.0.3",
"vitest": "^4.1.9"
}
}