-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (59 loc) · 1.38 KB
/
package.json
File metadata and controls
60 lines (59 loc) · 1.38 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
{
"name": "@scmmishra/pico-search",
"description": "A tiny fuzzy search engine",
"version": "0.6.0",
"license": "MIT",
"homepage": "https://github.com/scmmishra/pico-search",
"keywords": [
"fuzzy search",
"pico-search"
],
"repository": "https://github.com/scmmishra/pico-search",
"bugs": "https://github.com/scmmishra/pico-search/issues",
"exports": {
".": {
"require": {
"types": "./dist/index.d.cts",
"default": "./dist/index.cjs"
},
"import": {
"types": "./dist/index.d.mts",
"default": "./dist/index.mjs"
}
}
},
"main": "dist/index.cjs",
"module": "dist/index.mjs",
"types": "dist/index.d.cts",
"type": "module",
"files": [
"/dist"
],
"scripts": {
"dev": "tsdown --watch",
"build": "tsdown",
"test": "vitest",
"benchmark": "vitest bench",
"size": "size-limit",
"coverage": "vitest run --coverage"
},
"devDependencies": {
"@size-limit/esbuild": "^11.1.4",
"@size-limit/esbuild-why": "^11.1.4",
"@size-limit/preset-small-lib": "^11.1.4",
"@types/node": "^20.12.12",
"jsdom": "^24.1.0",
"size-limit": "^11.1.4",
"tsdown": "^0.20.3",
"typescript": "^5.4.5",
"vite": "^5.2.11",
"vitest": "^1.6.0",
"@vitest/coverage-v8": "^1.6.0"
},
"size-limit": [
{
"path": "dist/index.cjs",
"limit": "1.2 kB"
}
]
}