-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 1.34 KB
/
package.json
File metadata and controls
62 lines (62 loc) · 1.34 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
{
"name": "find-similar",
"description": "Finds similar word(s) in a list of words",
"version": "0.0.0-development",
"publishConfig": {
"access": "public"
},
"author": "Beni Arisandi (https://stilearning.com)",
"repository": "https://github.com/bent10/find-similar.git",
"license": "MIT",
"keywords": [
"leven",
"levenshtein",
"distance",
"string",
"difference",
"diff",
"suggest",
"fuzzy",
"similar",
"similarity",
"compare",
"comparison",
"edit",
"text",
"match",
"matching"
],
"type": "module",
"exports": "./dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist",
"readme.md",
"license"
],
"scripts": {
"start": "npm run dev",
"dev": "npm run types && vite build --emptyOutDir=false --watch",
"build": "vite build && npm run types",
"test": "vitest",
"coverage": "vitest run --coverage",
"types": "tsc src/*.ts -d --emitDeclarationOnly --outDir ./dist",
"lint": "tsc --noEmit && eslint .",
"format": "prettier --write ."
},
"dependencies": {
"leven": "^4.0.0"
},
"devDependencies": {
"doogu": "4.1.2"
},
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
},
"prettier": "doogu/prettier.config.js",
"release": {
"extends": "doogu/release.config.js"
}
}