-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
64 lines (64 loc) · 1.77 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-components",
"version": "0.0.10",
"author": {
"name": "user",
"email": "[email protected]"
},
"type": "module",
"main": "lib/vue2components.umd.js",
"module": "lib/vue2components.es.js",
"files": [
"lib"
],
"publishConfig": {
"registry": "http://localhost:4873/"
},
"scripts": {
"dev": "vite",
"build": "npm run clean && vite build",
"pub:ver": "npm run gen:ver && npm publish",
"gen:ver": "node ./build/generate-version.js",
"clean": "rimraf ./lib",
"reinstall": "rimraf package-lock.json && rimraf ./node_modules && npm cache clean && npm i",
"preview": "vite preview --port 4173",
"lint": "eslint . --ext .vue,.js,.jsx,.cjs,.mjs --fix --ignore-path .gitignore",
"docs:dev": "vitepress dev docs",
"docs:build": "vitepress build docs",
"docs:preview": "vitepress preview docs"
},
"dependencies": {
"echarts": "^5.5.1",
"element-ui": "^2.15.7",
"katex": "^0.16.11",
"lodash": "^4.17.21",
"vue-seamless-scroll": "^1.1.23"
},
"devDependencies": {
"@babel/plugin-transform-runtime": "^7.24.7",
"@babel/preset-env": "^7.25.3",
"@rushstack/eslint-patch": "^1.1.0",
"eslint": "^8.5.0",
"eslint-plugin-vue": "^9.0.0",
"rimraf": "^5.0.9",
"sass": "^1.34.0",
"sass-loader": "^8.0.2",
"terser": "^5.14.2",
"vite": "^3.0.2",
"vite-plugin-commonjs": "^0.10.1",
"vite-plugin-compression": "^0.5.1",
"vite-plugin-vue2": "^2.0.3",
"vitepress": "^1.4.0",
"vue": "^2.6.14",
"vue-router": "^3.6.5",
"vue-template-compiler": "^2.6.14"
},
"peerDependencies": {
"echarts": "^5.5.1",
"element-ui": "^2.15.7",
"katex": "^0.16.11",
"lodash": "^4.17.21",
"vue": "^2.6.14",
"vue-seamless-scroll": "^1.1.23"
}
}