forked from Akryum/floating-vue
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
71 lines (71 loc) · 2.06 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
{
"name": "floating-vue",
"version": "1.0.0-beta.19",
"description": "Easy Vue tooltips, dropdowns, menus & popovers using floating-ui",
"author": "Guillaume Chau <[email protected]>",
"scripts": {
"dev": "cross-env NODE_ENV=development vite build --watch",
"build": "cross-env NODE_ENV=production vite build && tsc -d --emitDeclarationOnly && vue-typegen gen -s src -o dist",
"prepublishOnly": "yarn run lint && yarn run test && yarn run build",
"test": "yarn run test:unit",
"lint": "eslint . --ext .js,.vue",
"test:unit": "peeky run"
},
"main": "dist/floating-vue.umd.js",
"module": "dist/floating-vue.es.js",
"types": "dist/index.d.ts",
"dependencies": {
"@floating-ui/dom": "^0.1.10",
"vue-resize": "^1.0.0"
},
"peerDependencies": {
"vue": "^2.6.10"
},
"devDependencies": {
"@babel/core": "^7.4.0",
"@babel/preset-env": "^7.4.2",
"@peeky/test": "^0.10.2",
"@typescript-eslint/eslint-plugin": "^5.6.0",
"@typescript-eslint/parser": "^5.6.0",
"@vue/eslint-config-standard": "^6.0.0",
"@vue/eslint-config-typescript": "^6.0.0",
"@vue/test-utils": "^1.1.2",
"babel-jest": "^26.6.3",
"cross-env": "^7.0.3",
"eslint": "^7.16.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-vue": "^7.4.0",
"fs-extra": "^9.0.1",
"typescript": "^4.5.4",
"vite": "^2.7.12",
"vite-plugin-vue2": "^1.9.2",
"vue-template-compiler": "^2.6.10",
"vue-typegen": "^0.2.0"
},
"browserslist": [
"> 1%",
"last 2 versions",
"not dead"
],
"bugs": {
"url": "https://github.com/Akryum/floating-vue/issues"
},
"homepage": "https://floating-vue.starpad.dev/",
"keywords": [
"vue",
"popper",
"tooltip",
"popover",
"dropdown",
"menu"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/Akryum/floating-vue.git",
"directory": "packages/floating-vue"
},
"gitHead": "2d26dae95e86706d17e45476233173d66887c013"
}