forked from lupas/vue-keypress
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
38 lines (38 loc) · 997 Bytes
/
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
{
"name": "vue-keypress",
"version": "2.1.1",
"description": "Global keypress event handler component for Vue.js 3 applications.",
"author": "Pascal Luther",
"license": "MIT",
"homepage": "https://github.com/lupas/vue-keypress",
"repository": "https://github.com/lupas/vue-keypress",
"keywords": [
"vue, keypress, keydown, keyup"
],
"publishConfig": {
"access": "public"
},
"scripts": {
"build": "cd build && npm run build:npm",
"publishToNpm": "npm run build && npm publish",
"demo": "cd demo && yarn dev"
},
"files": [
"dist",
"src",
"types"
],
"types": "types/index.d.ts",
"module": "src/index.vue",
"main": "dist/Keypress.umd.js",
"unpkg": "dist/Keypress.umd.min.js",
"devDependencies": {
"babel-eslint": "^10.1.0",
"eslint": "^7.16.0",
"eslint-config-prettier": "^7.1.0",
"eslint-loader": "^4.0.2",
"eslint-plugin-prettier": "^3.3.0",
"eslint-plugin-vue": "^7.3.0",
"prettier": "^2.2.1"
}
}