forked from imengyu/vue3-context-menu
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
56 lines (56 loc) · 1.48 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
{
"name": "@imengyu/vue3-context-menu",
"version": "1.4.1",
"description": "A context menu component for Vue3",
"main": "lib/vue3-context-menu.umd.js",
"files": [
"lib",
"index.d.ts"
],
"scripts": {
"dev": "vite serve examples",
"build-demo": "vite build examples",
"build-lib": "vite build library",
"build-types": "vue-tsc -p ./library/tsconfig.json --outDir ./lib --declaration --emitDeclarationOnly",
"docs:dev": "cd docs && vitepress dev",
"docs:build": "vitepress build ./docs"
},
"devDependencies": {
"@tsconfig/node18": "^18.2.2",
"@types/node": "^18.17.17",
"@vitejs/plugin-vue": "^4.3.4",
"@vitejs/plugin-vue-jsx": "^3.0.2",
"@vue/tsconfig": "^0.4.0",
"markdown-it-container": "^4.0.0",
"npm-run-all2": "^6.0.6",
"rimraf": "^5.0.5",
"sass": "^1.69.5",
"typescript": "~5.2.0",
"vite": "^4.4.9",
"vite-plugin-dts": "^3.6.4",
"vitepress": "^1.0.0-rc.31",
"vitepress-plugin-sandpack": "^1.1.4",
"vue": "^3.3.4",
"vue-router": "^4.2.5",
"vue-tsc": "^1.8.11"
},
"repository": {
"type": "git",
"url": "git+https://github.com/imengyu/vue3-context-menu.git"
},
"keywords": [
"vue3",
"vue",
"context",
"menu",
"右键菜单",
"菜单",
"contextmenu"
],
"author": "imengyu",
"license": "MIT",
"bugs": {
"url": "https://github.com/imengyu/vue3-context-menu/issues"
},
"homepage": "https://github.com/imengyu/vue3-context-menu#readme"
}