-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
77 lines (77 loc) · 1.92 KB
/
Copy pathpackage.json
File metadata and controls
77 lines (77 loc) · 1.92 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
{
"name": "stringwise",
"version": "1.0.1",
"type": "module",
"description": "Effortless and fast string similarity comparison using multiple algorithms, including bigrams, Levenshtein, Jaro-Winkler, and Ratcliff/Obershelp. Perfect for fuzzy search, NLP, and intelligent text matching.",
"keywords": [
"natural language processing",
"ratcliff-obershelp",
"string similarity",
"string comparison",
"compare strings",
"string matching",
"fuzzy matching",
"text distance",
"jaro-winkler",
"levenshtein",
"typescript",
"utility",
"bigram",
"NLP",
"esm"
],
"author": {
"name": "Kledenai",
"email": "me@kledenai.com"
},
"repository": {
"type": "git",
"url": "https://github.com/kledenai/stringwise.git"
},
"bugs": {
"url": "https://github.com/kledenai/stringwise/issues"
},
"homepage": "https://github.com/kledenai/mathcheck#readme",
"license": "MIT",
"main": "dist/index.cjs",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"require": "./dist/index.cjs",
"import": "./dist/index.js"
}
},
"files": [
"dist"
],
"scripts": {
"build": "tsup",
"dev": "tsup --watch",
"test": "node --experimental-vm-modules node_modules/.bin/jest",
"lint": "eslint src",
"start": "node dist/index.js",
"prepare": "npm run build",
"clean": "rm -rf dist"
},
"engines": {
"node": ">=14.0.0"
},
"devDependencies": {
"@types/fast-levenshtein": "^0.0.4",
"@types/jaro-winkler": "^0.2.4",
"@types/jest": "^29.5.14",
"@typescript-eslint/eslint-plugin": "^8.30.1",
"@typescript-eslint/parser": "^8.30.1",
"eslint": "^9.25.0",
"eslint-define-config": "^2.1.0",
"jest": "^29.7.0",
"ts-jest": "^29.3.2",
"tsup": "^8.4.0",
"typescript": "^5.8.3"
},
"dependencies": {
"fast-levenshtein": "^3.0.0",
"jaro-winkler": "^0.2.8"
}
}