-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
64 lines (64 loc) · 2.18 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
{
"name": "vue-custom-context-menu",
"version": "3.0.3",
"description": "A Vue.js plugin for building custom 🖱 Context Menus. Automatically adjusts position and supports nested Context Menus out of the box",
"main": "dist/vue-custom-context-menu.umd.js",
"module": "dist/vue-custom-context-menu.esm.js",
"unpkg": "dist/vue-custom-context-menu.min.js",
"scripts": {
"build": "npm run build:umd && npm run build:esm && npm run build:unpkg",
"build:umd": "rollup --config rollup.config.js --format umd --file dist/vue-custom-context-menu.umd.js",
"build:esm": "rollup --config rollup.config.js --format esm --file dist/vue-custom-context-menu.esm.js",
"build:unpkg": "rollup --config rollup.config.js --format esm --file dist/vue-custom-context-menu.min.js --environment MINIFY",
"dev": "node examples/server.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/smellyshovel/vue-custom-context-menu.git"
},
"keywords": [
"vue",
"vue2",
"vue3",
"UI",
"context",
"menu",
"context-menu",
"contextmenu",
"right",
"click",
"right-click"
],
"author": "Matthew Mamonov <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/smellyshovel/vue-custom-context-menu/issues"
},
"homepage": "https://github.com/smellyshovel/vue-custom-context-menu#readme",
"devDependencies": {
"@babel/core": "^7.14.3",
"@babel/plugin-syntax-dynamic-import": "^7.8.3",
"@babel/preset-env": "^7.14.2",
"@rollup/plugin-babel": "^5.3.0",
"@vue/compiler-sfc": "^3.0.11",
"babel-loader": "^8.2.2",
"connect-history-api-fallback": "^1.6.0",
"css-loader": "^5.2.6",
"express": "^4.17.1",
"html-webpack-plugin": "^5.3.1",
"postcss": "^8.1.10",
"rollup": "^2.50.2",
"rollup-plugin-postcss": "^4.0.0",
"rollup-plugin-terser": "^7.0.2",
"rollup-plugin-vue": "^6.0.0",
"vue": "^2.6.12",
"vue-loader": "^15.9.7",
"vue-router": "^3.5.1",
"vue-style-loader": "^4.1.3",
"vue-template-compiler": "^2.6.12",
"webpack": "^5.38.0",
"webpack-dev-middleware": "^4.3.0",
"webpack-hot-middleware": "^2.25.0"
},
"dependencies": {}
}