-
Notifications
You must be signed in to change notification settings - Fork 13
/
package.json
77 lines (77 loc) · 2.06 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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
{
"name": "@m31coding/fuzzy-search",
"version": "1.0.2",
"license": "MIT",
"description": "A fast, accurate and multilingual fuzzy search library.",
"homepage": "https://github.com/m31coding/fuzzy-search",
"repository": {
"type": "git",
"url": "https://github.com/m31coding/fuzzy-search.git"
},
"keywords": [
"fuzzy",
"search",
"fuzzy search",
"string matching"
],
"author": {
"name": "Kevin Schaal",
"url": "https://www.m31coding.com"
},
"type": "module",
"source": "src/fuzzy-search.ts",
"main": "./dist/fuzzy-search.cjs",
"module": "./dist/fuzzy-search.module.js",
"unpkg": "./dist/fuzzy-search.umd.js",
"types": "./dist/fuzzy-search.d.ts",
"exports": {
".": {
"module-sync": {
"types": "./dist/fuzzy-search.d.ts",
"default": "./dist/fuzzy-search.modern.js"
},
"module": {
"types": "./dist/fuzzy-search.d.ts",
"default": "./dist/fuzzy-search.modern.js"
},
"import": {
"types": "./dist/fuzzy-search.d.ts",
"default": "./dist/fuzzy-search.modern.js"
},
"default": {
"types": "./dist/fuzzy-search.d.cts",
"default": "./dist/fuzzy-search.cjs"
}
},
"./package.json": "./package.json"
},
"scripts": {
"test": "jest --coverage",
"dev": "microbundle watch",
"build": "microbundle && tsx scripts/copyFiles.mts",
"prettier": "prettier --config .prettierrc.json . --write",
"eslint": "eslint --ext .ts src",
"typedoc": "typedoc src/fuzzy-search.ts",
"prepack": "npm run build"
},
"devDependencies": {
"@faker-js/faker": "^8.4.1",
"@stylistic/eslint-plugin": "^2.11.0",
"@types/jest": "^29.5.14",
"@typescript-eslint/eslint-plugin": "^8.15.0",
"@typescript-eslint/parser": "^8.15.0",
"eslint": "^8.57.1",
"file-saver": "^2.0.5",
"jest": "^29.7.0",
"microbundle": "^0.15.1",
"prettier": "^3.3.3",
"ts-jest": "^29.2.5",
"tsx": "^4.19.2",
"typedoc": "^0.26.11",
"typescript": "^5.6.3"
},
"files": [
"dist",
"usage-examples"
]
}