-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.07 KB
/
package.json
File metadata and controls
52 lines (52 loc) · 1.07 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
{
"name": "@drainpixie/jaro",
"version": "1.0.1",
"type": "module",
"description": "a small string distance algorithm",
"license": "LGPL-3.0",
"files": [
"dist",
"package.json"
],
"main": "./dist/index.js",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"require": "./dist/index.cjs"
},
"scripts": {
"build": "tsup",
"prepack": "pnpm run build",
"test": "node --import tsx --test src/*.test.ts"
},
"publishConfig": {
"access": "public"
},
"keywords": [
"jaro",
"jaro-winkler",
"string",
"distance",
"algorithm",
"similarity"
],
"devDependencies": {
"@eslint/compat": "^2.0.0",
"@eslint/js": "^9.39.1",
"@types/node": "^24.10.1",
"eslint": "^9.39.1",
"eslint-config-prettier": "^10.1.8",
"jiti": "^2.6.1",
"tsup": "^8.5.1",
"tsx": "^4.20.6",
"typescript": "^5.9.3",
"typescript-eslint": "^8.48.0"
},
"pnpm": {
"onlyBuiltDependencies": [
"esbuild"
]
}
}