-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
113 lines (113 loc) · 2.75 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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
{
"name": "@pdanpdan/vue-keyboard-trap",
"version": "1.1.0",
"description": "Vue3 and Vue2 directive for keyboard navigation - roving movement and trapping inside container",
"productName": "Vue Keyboard Trap",
"author": {
"name": "Dan Popescu",
"email": "pdan.popescu@gmail.com",
"url": "https://github.com/pdanpdan"
},
"funding": {
"type": "github",
"url": "https://github.com/sponsors/pdanpdan"
},
"repository": {
"type": "git",
"url": "git+https://github.com/pdanpdan/vue-keyboard-trap.git"
},
"keywords": [
"vue",
"vue2",
"vue3",
"composable",
"directive",
"keyboard",
"navigation",
"trap",
"roving",
"grid",
"gridcell",
"a11y",
"accessibility",
"cycle",
"tab",
"tabindex",
"use",
"wai-aria"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/pdanpdan/vue-keyboard-trap/issues"
},
"homepage": "https://pdanpdan.github.io/vue-keyboard-trap",
"type": "module",
"main": "./dist/index.umd.js",
"module": "./dist/index.es.js",
"exports": {
".": {
"require": "./dist/index.umd.js",
"import": "./dist/index.es.js",
"types": "./dist/types/index.d.ts",
"style": "./dist/styles/index.css",
"css": "./dist/styles/index.css",
"sass": "./dist/styles/index.sass",
"web-types": "./dist/web-types/index.json"
},
"./styles/css": "./dist/styles/index.css",
"./styles/sass": "./dist/styles/index.sass",
"./types": "./dist/types/index.d.ts"
},
"typings": "./dist/types/index.d.ts",
"types": "./dist/types/index.d.ts",
"web-types": "./dist/web-types/index.json",
"files": [
"dist/",
"src/"
],
"directories": {
"doc": "docs"
},
"sideEffects": [
"*.sass",
"*.css"
],
"scripts": {
"dev": "vite --config ./vite.dev.config.js",
"docs:dev": "vitepress dev docs",
"docs:build": "vitepress build docs",
"docs:deploy": "./deploy.docs.sh",
"lint": "eslint --ext .js,.vue ./",
"build": "vite build --config ./vite.src.config.js",
"prepublishOnly": "pnpm lint && pnpm build"
},
"dependencies": {
"vue-demi": "^0.14.10"
},
"peerDependencies": {
"@vue/composition-api": ">=1.0.0",
"vue": ">=2.0.0"
},
"peerDependenciesMeta": {
"@vue/composition-api": {
"optional": true
}
},
"devDependencies": {
"@vitejs/plugin-vue": "^5.1.4",
"eslint": "^8.57.1",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-plugin-import": "^2.30.0",
"eslint-plugin-vue": "^9.28.0",
"flexsearch": "^0.7.43",
"markdown-it": "^14.1.0",
"sass-embedded": "^1.79.1",
"vite": "^5.4.6",
"vitepress": "1.3.4",
"vue": "^3.5.6"
},
"engines": {
"node": ">= 12.22.0"
},
"packageManager": "pnpm@9.10.0"
}