-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
60 lines (60 loc) · 1.36 KB
/
package.json
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
{
"name": "@foxxmd/string-sameness",
"type": "module",
"version": "0.4.1",
"description": "determine how closely the same two strings are",
"repository": "https://github.com/foxxmd/string-sameness",
"author": "FoxxMD",
"license": "MIT",
"private": false,
"engines": {
"node": ">=18.0.0",
"npm": ">=9.3.0"
},
"files": [
"dist"
],
"scripts": {
"typedoc": "typedoc --plugin @8hobbies/typedoc-plugin-plausible",
"build": "tsc",
"prepare": "tshy",
"test": "mocha --recursive ./tests/*.test.ts"
},
"devDependencies": {
"@tsconfig/node18": "^1.0.1",
"@types/chai": "^4.3.0",
"@types/mocha": "^9.1.0",
"@types/string-similarity": "^4.0.0",
"chai": "^4.3.6",
"mocha": "^10.2.0",
"tshy": "^1.7.0",
"tsx": "^4.7.1",
"typedoc": "^0.26.2",
"typescript": "^5.3.3"
},
"dependencies": {
"@8hobbies/typedoc-plugin-plausible": "^2.0.0",
"dice-coefficient": "^2.1.1",
"leven": "^3.0.0"
},
"tshy": {
"project": "./tsconfig.build.json",
"exports": {
"./package.json": "./package.json",
".": "./src/index.js"
},
"dialects": [
"esm"
]
},
"exports": {
"./package.json": "./package.json",
".": {
"import": {
"source": "./src/index.js",
"types": "./dist/esm/index.d.ts",
"default": "./dist/esm/index.js"
}
}
}
}