-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathpackage.json
61 lines (61 loc) · 1.43 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
{
"name": "vue-a11y-dialog",
"description": "Vue.js component wrapping for a11y-dialog",
"version": "1.1.2",
"homepage": "https://github.com/morkro/vue-a11y-dialog",
"license": "MIT",
"author": "Moritz Kröger (https://moritz.berlin)",
"private": false,
"files": [
"dist"
],
"main": "dist/vue-a11y-dialog.umd.js",
"module": "dist/vue-a11y-dialog.esm.js",
"browser": "dist/vue-a11y-dialog.umd.js",
"exports": {
".": {
"import": "./dist/vue-a11y-dialog.esm.js",
"require": "./dist/vue-a11y-dialog.umd.js"
}
},
"keywords": [
"modal",
"dialog",
"accessibility",
"a11y",
"focus",
"vue",
"component"
],
"scripts": {
"dev": "vite dev",
"build": "vite build",
"serve": "vite preview",
"test": "npx cypress open-ct",
"test:ci": "npx cypress run-ct",
"lint": "eslint --ext .js,.vue src",
"lint:fix": "npm run lint --fix"
},
"repository": {
"type": "git",
"url": "https://github.com/morkro/vue-a11y-dialog"
},
"dependencies": {
"a11y-dialog": "^7.3.0",
"vue": "^3.2.26"
},
"peerDependencies": {
"vue": "^3.2.26"
},
"devDependencies": {
"@cypress/vite-dev-server": "^2.0.5",
"@cypress/vue": "3",
"@vitejs/plugin-vue": "^1.3.0",
"@vue/compiler-sfc": "^3.0.5",
"cypress": "8.2.0",
"eslint": "^8.6.0",
"eslint-plugin-cypress": "^2.12.1",
"eslint-plugin-vue": "^8.2.0",
"vite": "^2.4.4"
}
}