forked from metonym/svelte-typeahead
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
47 lines (47 loc) · 1.07 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
{
"name": "svelte-typeahead",
"version": "0.1.1",
"license": "MIT",
"description": "Accessible, fuzzy search typeahead component",
"author": "Eric Liu (https://github.com/metonym)",
"svelte": "./src/index.js",
"main": "./lib/index.js",
"module": "./lib/index.mjs",
"sideEffects": false,
"scripts": {
"prepack": "rollup -c",
"prepare": "rollup -c"
},
"dependencies": {
"fuzzy": "0.1.3",
"svelte-search": "^0.1.1"
},
"devDependencies": {
"@rollup/plugin-commonjs": "^15.1.0",
"@rollup/plugin-node-resolve": "^9.0.0",
"rollup": "^2.28.1",
"rollup-plugin-svelte": "^6.0.1",
"svelte": "^3.26.0"
},
"repository": {
"type": "git",
"url": "https://github.com/metonym/svelte-typeahead.git"
},
"homepage": "https://github.com/metonym/svelte-typeahead",
"bugs": "https://github.com/metonym/svelte-typeahead/issues",
"keywords": [
"svelte",
"svelte component",
"typeahead",
"fuzzy",
"highlight",
"search",
"filter",
"WAI-ARIA",
"accessibility"
],
"files": [
"lib",
"src"
]
}