-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
56 lines (56 loc) · 1.26 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
{
"name": "svelte-search",
"version": "2.1.1",
"license": "MIT",
"description": "Accessible, customizable Svelte search component",
"author": "Eric Liu (https://github.com/metonym)",
"type": "module",
"svelte": "./src/index.js",
"main": "./src/index.js",
"types": "./src/index.d.ts",
"exports": {
"./*.svelte": {
"types": "./src/*.svelte.d.ts",
"import": "./src/*.svelte"
},
"./*.js": {
"types": "./src/*.d.ts",
"import": "./src/*.js"
},
".": {
"types": "./src/index.d.ts",
"import": "./src/index.js",
"svelte": "./src/index.js"
}
},
"scripts": {
"dev": "rollup -cw",
"test": "svelte-check --workspace tests"
},
"devDependencies": {
"@types/bun": "^1.1.15",
"culls": "^0.1.1",
"svelte": "^4.2.19",
"svelte-check": "^4.1.1",
"svelte-readme": "^3.6.3",
"typescript": "^5.7.2"
},
"repository": {
"type": "git",
"url": "git+https://github.com/metonym/svelte-search.git"
},
"homepage": "https://github.com/metonym/svelte-search",
"bugs": "https://github.com/metonym/svelte-search/issues",
"keywords": [
"svelte",
"svelte component",
"search",
"debounce",
"accessible",
"form",
"input"
],
"files": [
"src"
]
}