-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
58 lines (58 loc) · 1.49 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
{
"name": "vue-word-cloud",
"description": "Create word cloud using Vue 3.x and Echarts 5.x",
"version": "0.0.1",
"author": "Wisdom <[email protected]>",
"license": "MIT",
"scripts": {
"dev": "vite --host",
"build": "vite build",
"deploy:gh-pages": "cross-env VITE_ROUTER_MODE=hash pnpm build",
"preview": "vite preview --host",
"lint": "eslint ./src --ext .js,.jsx,.vue",
"lint:fix": "eslint --fix --cache --ext .js,.jsx,.vue ./src"
},
"engines": {
"node": ">= 14.19.2"
},
"keywords": [
"vue",
"vue3",
"vite",
"echarts",
"word-cloud",
"map"
],
"repository": {
"type": "git",
"url": "git+https://github.com/pdsuwwz/vue-word-cloud"
},
"bugs": {
"url": "https://github.com/pdsuwwz/vue-word-cloud/issues"
},
"dependencies": {
"echarts": "^5.4.1",
"echarts-wordcloud": "^2.1.0",
"nprogress": "^0.2.0",
"vue": "^3.2.47",
"vue-router": "^4.1.6"
},
"devDependencies": {
"@babel/core": "^7.21.0",
"@babel/eslint-parser": "^7.19.1",
"@babel/preset-env": "^7.20.2",
"@vitejs/plugin-vue": "^4.0.0",
"@vue/compiler-sfc": "^3.2.47",
"@vue/test-utils": "^2.3.0",
"babel-plugin-transform-vite-meta-env": "^1.0.3",
"cross-env": "^7.0.3",
"eslint": "^8.35.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "6.1.1",
"eslint-plugin-vue": "9.9.0",
"rollup": "3.19.1",
"sass": "^1.58.3",
"vite": "^4.1.4"
}
}