forked from hekigan/vue-directive-tooltip
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 loc) · 926 Bytes
/
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
{
"name": "vue-directive-tooltip",
"version": "3.0.0",
"description": "Vue.js tooltip directive",
"keywords": [
"vue",
"tooltip",
"directive",
"vue tooltip"
],
"author": "Laurent Blanes <laurent.blanes@gmail.com>",
"main": "dist/vue-directive-tooltip.umd.js",
"module": "dist/vue-directive-tooltip.mjs",
"style": "dist/style.css",
"files": [
"src",
"dist"
],
"license": "MIT",
"scripts": {
"build": "vite build"
},
"dependencies": {
"@popperjs/core": "^2.11.6"
},
"peerDependencies": {
"vue": "^3.2.0"
},
"devDependencies": {
"@vitejs/plugin-vue": "^3.0.3",
"eslint-config-standard-extended": "^1.0.1",
"fs-extra": "^8.1.0",
"normalize.css": "^8.0.1",
"sass": "^1.54.4",
"vite": "^3.0.8",
"vue": "^3.2.37"
},
"repository": {
"type": "git",
"url": "git+https://github.com/hekigan/vue-directive-tooltip.git"
}
}