forked from metonym/svelte-keydown
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
48 lines (48 loc) · 1.14 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-keydown",
"version": "0.5.0",
"license": "MIT",
"description": "Utility to listen for keyboard events",
"author": "Eric Liu (https://github.com/metonym)",
"svelte": "./src/index.js",
"main": "./lib/index.js",
"module": "./lib/index.mjs",
"types": "./types/index.d.ts",
"sideEffects": false,
"scripts": {
"dev": "rollup -cw",
"predeploy": "rollup -c",
"deploy": "npx gh-pages -d dist",
"prepack": "BUNDLE=true rollup -c",
"test": "svelte-check --workspace=test"
},
"devDependencies": {
"@rollup/plugin-node-resolve": "^13.1.3",
"rollup": "^2.65.0",
"rollup-plugin-svelte": "^7.1.0",
"svelte": "^3.52.0",
"svelte-check": "^2.9.2",
"svelte-readme": "^3.6.3"
},
"repository": {
"type": "git",
"url": "https://github.com/metonym/svelte-keydown.git"
},
"homepage": "https://github.com/metonym/svelte-keydown",
"bugs": "https://github.com/metonym/svelte-keydown/issues",
"keywords": [
"svelte",
"svelte component",
"keydown",
"keyup",
"utility",
"escape",
"enter",
"combo"
],
"files": [
"lib",
"src",
"types"
]
}