-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
54 lines (53 loc) · 1.25 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
{
"name": "@scmmishra/pico-search",
"description": "A tiny fuzzy search engine",
"version": "0.5.4",
"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": "./dist/index.js",
"import": "./dist/index.mjs",
"types": "./dist/index.d.ts"
}
},
"main": "dist/index.js",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"files": [
"/dist"
],
"scripts": {
"dev": "tsup --watch",
"build": "tsup",
"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",
"tsup": "^8.0.2",
"typescript": "^5.4.5",
"vite": "^5.2.11",
"vitest": "^1.6.0",
"@vitest/coverage-v8": "^1.6.0"
},
"size-limit": [
{
"path": "dist/index.js",
"limit": "1.2 kB"
}
]
}