-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
102 lines (102 loc) · 2.39 KB
/
package.json
File metadata and controls
102 lines (102 loc) · 2.39 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
{
"name": "text-toolbox",
"type": "module",
"version": "1.0.15",
"packageManager": "pnpm@10.11.0",
"description": "A high-performance TypeScript library for string similarity, distance algorithms, and text normalization utilities",
"author": "",
"license": "MIT",
"homepage": "https://github.com/moshetanzer/text-toolbox#readme",
"repository": {
"type": "git",
"url": "https://github.com/moshetanzer/text-toolbox.git"
},
"bugs": {
"url": "https://github.com/moshetanzer/text-toolbox/issues"
},
"keywords": [
"string",
"text",
"utilities",
"toolbox",
"similarity",
"distance",
"levenshtein",
"jaro-winkler",
"metaphone",
"text-processing",
"string-comparison",
"normalization",
"case-conversion",
"case-formatter",
"string-cleaning",
"whitespace",
"diacritics",
"text-transformation",
"typescript",
"natural-language-processing",
"nlp",
"string-manipulation",
"string-similarity",
"string-distance",
"cosine-similarity",
"dice-coefficient",
"text-normalization",
"camelcase",
"kebabcase",
"snakecase",
"emoji",
"fingerprint",
"tree-shakeable",
"no-dependencies",
"performance"
],
"sideEffects": false,
"exports": {
".": "./dist/index.mjs"
},
"main": "./dist/index.mjs",
"module": "./dist/index.mjs",
"typesVersions": {
"*": {
"*": [
"./dist/index.d.mts"
]
}
},
"files": [
"dist"
],
"scripts": {
"build": "unbuild",
"dev": "vitest dev",
"lint": "eslint . --fix",
"prepare": "simple-git-hooks",
"prepack": "pnpm build",
"prepublishOnly": "pnpm lint && pnpm test && pnpm test:knip",
"release": "bumpp && pnpm publish",
"test": "pnpm test:unit && pnpm test:types",
"test:unit": "vitest",
"test:knip": "knip",
"test:versions": "installed-check -d --no-workspaces",
"test:types": "tsc --noEmit"
},
"devDependencies": {
"@antfu/eslint-config": "latest",
"@types/node": "latest",
"@vitest/coverage-v8": "latest",
"bumpp": "latest",
"changelogithub": "latest",
"eslint": "latest",
"installed-check": "latest",
"knip": "latest",
"simple-git-hooks": "latest",
"typescript": "latest",
"unbuild": "latest",
"vitest": "latest"
},
"simple-git-hooks": {
"pre-commit": "pnpm lint",
"pre-push": "pnpm test:unit"
}
}