|
| 1 | +{ |
| 2 | + "name": "vue-keyboard-trap", |
| 3 | + "version": "0.0.1", |
| 4 | + "description": "Vue2 and Vue3 directive for keyboard navigation - roving movement and trapping inside container", |
| 5 | + "productName": "Vue Keyboard Trap", |
| 6 | + "author": { |
| 7 | + "name": "Dan Popescu", |
| 8 | + |
| 9 | + "url": "https://github.com/pdanpdan" |
| 10 | + }, |
| 11 | + "funding": { |
| 12 | + "type": "github", |
| 13 | + "url": "https://github.com/sponsors/pdanpdan" |
| 14 | + }, |
| 15 | + "repository": { |
| 16 | + "type": "git", |
| 17 | + "url": "git+https://github.com/pdanpdan/vue-keyboard-trap.git" |
| 18 | + }, |
| 19 | + "keywords": [ |
| 20 | + "vue", |
| 21 | + "vue2", |
| 22 | + "vue3", |
| 23 | + "directive", |
| 24 | + "keyboard", |
| 25 | + "navigation", |
| 26 | + "trap", |
| 27 | + "roving", |
| 28 | + "a11y", |
| 29 | + "accessibility" |
| 30 | + ], |
| 31 | + "license": "MIT", |
| 32 | + "bugs": { |
| 33 | + "url": "https://github.com/pdanpdan/vue-keyboard-trap/issues" |
| 34 | + }, |
| 35 | + "homepage": "https://pdanpdan.github.io/vue-keyboard-trap", |
| 36 | + "main": "./dist/src/index.umd.js", |
| 37 | + "module": "./dist/src/index.es.js", |
| 38 | + "exports": { |
| 39 | + ".": { |
| 40 | + "require": "./dist/src/index.umd.js", |
| 41 | + "import": "./dist/src/index.es.js" |
| 42 | + } |
| 43 | + }, |
| 44 | + "typings": "./dist/src/index.d.ts", |
| 45 | + "types": "./dist/src/index.d.ts", |
| 46 | + "files": [ |
| 47 | + "dist" |
| 48 | + ], |
| 49 | + "scripts": { |
| 50 | + "dev": "vite --config ./vite.dev.config.js", |
| 51 | + "dev:build": "vite build --config ./vite.dev.config.js", |
| 52 | + "dev:serve": "vite preview", |
| 53 | + |
| 54 | + "docs:dev": "vitepress dev docs", |
| 55 | + "docs:build": "vitepress build docs", |
| 56 | + "docs:serve": "vitepress serve docs", |
| 57 | + "docs:deploy": "./deploy.docs.sh", |
| 58 | + |
| 59 | + "lint": "eslint --ext .js,.vue ./", |
| 60 | + "build": "vite build --config ./vite.src.config.js", |
| 61 | + "prepublishOnly": "yarn lint && yarn dev:build && yarn build && ./deploy.docs.sh" |
| 62 | + }, |
| 63 | + "peerDependencies": { |
| 64 | + "vue": "^3.0.0 || ^2.0.0" |
| 65 | + }, |
| 66 | + "devDependencies": { |
| 67 | + "@vitejs/plugin-vue": "^2.3.1", |
| 68 | + "eslint": "^8.13.0", |
| 69 | + "eslint-config-airbnb-base": "^15.0.0", |
| 70 | + "eslint-plugin-import": "^2.26.0", |
| 71 | + "eslint-plugin-vue": "^8.6.0", |
| 72 | + "sass": "^1.50.0", |
| 73 | + "vite": "^2.9.5", |
| 74 | + "vitepress": "^0.22.3", |
| 75 | + "vue": "^3.2.33" |
| 76 | + }, |
| 77 | + "engines": { |
| 78 | + "node": ">= 12.22.0 || >= 14.19.0 || >= 16.14.0", |
| 79 | + "yarn": ">= 1.22.0" |
| 80 | + } |
| 81 | +} |
0 commit comments