-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathpackage.json
59 lines (59 loc) · 1.37 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
{
"name": "vue3-click-away",
"version": "1.2.4",
"description": "Vue 3.0 Compatible Click Away Directive",
"main": "dist/common.js",
"module": "dist/module.js",
"typings": "dist/types/index.d.ts",
"types": "dist/types/index.d.ts",
"files": [
"dist"
],
"scripts": {
"build": "rollup -c",
"docs:dev": "vitepress dev docs",
"docs:build": "vitepress build docs",
"docs:serve": "vitepress serve docs"
},
"repository": {
"type": "git",
"url": "git+https://github.com/VinceG/vue-click-away.git"
},
"keywords": [
"vue",
"vue.js",
"vue3",
"3.0",
"clickaway",
"outside",
"click",
"away",
"clickoutside"
],
"author": {
"name": "Vincent Gabriel",
"email": "[email protected]",
"url": "https://github.com/vinceg"
},
"contributors": [
{
"name": "Denis Karabaza",
"email": "[email protected]",
"url": "https://github.com/simplesmiler"
}
],
"license": "MIT",
"bugs": {
"url": "https://github.com/VinceG/vue-click-away/issues"
},
"homepage": "https://github.com/VinceG/vue-click-away#readme",
"devDependencies": {
"@babel/core": "^7.11.6",
"@babel/plugin-transform-arrow-functions": "^7.10.4",
"rollup": "^2.27.1",
"rollup-plugin-babel": "^4.4.0",
"rollup-plugin-copy": "^3.3.0",
"vitepress": "^0.9.0"
},
"dependencies": {}
}