-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathpackage.json
83 lines (83 loc) · 2.32 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
{
"name": "vue-focus-lock",
"version": "3.0.1",
"description": "It is a trap! (for a focus)",
"type": "module",
"main": "./dist/vue-focus-lock.umd.cjs",
"module": "./dist/vue-focus-lock.js",
"types": "./dist/vue-focus-lock.d.ts",
"exports": {
".": {
"import": "./dist/vue-focus-lock.js",
"require": "./dist/vue-focus-lock.umd.cjs",
"types": "./dist/vue-focus-lock.d.ts"
}
},
"files": [
"dist"
],
"scripts": {
"build": "run-p type-check \"build-only {@}\" --",
"build-only": "vite build",
"prepublish": "npm run build",
"type-check": "vue-tsc --build --force",
"lint": "eslint . --ext .vue,.js,.jsx,.cjs,.mjs,.ts,.tsx,.cts,.mts --ignore-path .gitignore",
"lint:fix": "eslint . --ext .vue,.js,.jsx,.cjs,.mjs,.ts,.tsx,.cts,.mts --fix --ignore-path .gitignore",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/theKashey/vue-focus-lock.git"
},
"keywords": [
"vue",
"focus",
"lock",
"trap",
"tabbable"
],
"author": "theKashey <[email protected]>",
"license": "ISC",
"bugs": {
"url": "https://github.com/theKashey/vue-focus-lock/issues"
},
"dependencies": {
"focus-lock": "^1.3.6"
},
"devDependencies": {
"@rushstack/eslint-patch": "^1.3.3",
"@storybook/addon-essentials": "^7.6.16",
"@storybook/addon-interactions": "^7.6.16",
"@storybook/addon-links": "^7.6.16",
"@storybook/blocks": "^7.6.16",
"@storybook/test": "^7.6.16",
"@storybook/vue3": "^7.6.16",
"@storybook/vue3-vite": "^7.6.16",
"@tsconfig/node20": "^20.1.2",
"@types/node": "^20.11.19",
"@vitejs/plugin-vue": "^5.0.3",
"@vue/eslint-config-prettier": "^8.0.0",
"@vue/eslint-config-typescript": "^12.0.0",
"@vue/tsconfig": "^0.5.1",
"eslint": "^8.49.0",
"eslint-plugin-prettier-vue": "^5.0.0",
"eslint-plugin-storybook": "^0.8.0",
"eslint-plugin-vue": "^9.17.0",
"npm-run-all2": "^6.1.1",
"prettier": "^3.0.3",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"storybook": "^7.6.16",
"vite": "^5.0.11",
"vite-plugin-dts": "^3.7.2",
"vue": "^3.0.0",
"vue-tsc": "^1.8.27"
},
"peerDependencies": {
"vue": "^3.0.0"
},
"resolutions": {
"jackspeak": "2.1.1"
}
}