-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
68 lines (68 loc) · 1.72 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
{
"name": "@miyauci/vue-click-outside",
"description": "vue directive for outside click",
"version": "1.2.4",
"main": "dist/vue-click-outside.umd.js",
"module": "dist/vue-click-outside.es.js",
"types": "dist/index.d.ts",
"exports": {
".": {
"import": "./dist/vue-click-outside.es.js",
"require": "./dist/vue-click-outside.umd.js"
}
},
"sideEffects": false,
"license": "MIT",
"scripts": {
"commit": "yarn --cwd ../.. commit",
"cz": "yarn commit",
"dev": "vite",
"lint": "run-p build:*",
"lint:script": "eslint . --ext .ts --ignore-pattern dist",
"lint:tsc": "vue-tsc --noEmit",
"build": "run-p build:*",
"build:lib": "vite build",
"build:types": "dts-bundle-generator --no-banner -o dist/index.d.ts src/index.ts",
"test": "jest"
},
"peerDependencies": {
"vue": "^3.0.5"
},
"devDependencies": {
"vue": "^3.0.5",
"@vitejs/plugin-vue": "^1.2.1",
"@vue/compiler-sfc": "^3.0.5",
"@vue/test-utils": "^2.0.0-rc.4",
"vite": "^2.1.5",
"vue-tsc": "^0.0.24"
},
"files": [
"dist"
],
"keywords": [
"vue",
"directives",
"mixin",
"click",
"outside",
"click outside"
],
"author": {
"name": "TomokiMiyauci",
"email": "development.operation6.6.6@gmail.com",
"url": "https://miyauchi.dev/"
},
"homepage": "https://github.com/TomokiMiyauci/click-outside/tree/main/packages/vue#readme",
"bugs": "https://github.com/TomokiMiyauci/click-outside/issues",
"repository": {
"type": "git",
"url": "https://github.com/TomokiMiyauci/click-outside.git"
},
"funding": {
"type": "patreon",
"url": "https://www.patreon.com/tomoki_miyauci"
},
"publishConfig": {
"access": "public"
}
}