forked from metonym/svelte-fuzzy
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
48 lines (48 loc) · 1.12 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
{
"name": "svelte-fuzzy",
"version": "2.1.0",
"license": "MIT",
"description": "Fuse.js binding for fuzzy text match highlighting.",
"author": "Eric Liu (https://github.com/metonym)",
"svelte": "./src/index.js",
"module": "./lib/index.mjs",
"main": "./lib/index.js",
"types": "./types/index.d.ts",
"scripts": {
"dev": "rollup -cw",
"predeploy": "rollup -c",
"deploy": "npx gh-pages -d dist",
"prepack": "BUNDLE=true rollup -c",
"test": "svelte-check --workspace test"
},
"dependencies": {
"format-fuse.js": "^1.0.2",
"fuse.js": "^3.6.1"
},
"devDependencies": {
"@rollup/plugin-commonjs": "^20.0.0",
"svelte": "^3.42.4",
"svelte-check": "^2.2.5",
"svelte-readme": "^3.3.1"
},
"repository": {
"type": "git",
"url": "https://github.com/metonym/svelte-fuzzy.git"
},
"homepage": "https://github.com/metonym/svelte-fuzzy",
"bugs": "https://github.com/metonym/svelte-fuzzy/issues",
"keywords": [
"svelte",
"svelte 3",
"fuzzy",
"fuse.js",
"highlight",
"match",
"text highlighting"
],
"files": [
"lib",
"src",
"types"
]
}