@zhangqingcq/vgce 0.0.1
Sign up to get free protection for your applications and to get access to all the features.
- package/LICENSE +21 -0
- package/README.md +2 -0
- package/dist/style.css +7 -0
- package/dist/vgce.mjs +40282 -0
- package/dist/vgce.umd.js +378 -0
- package/package.json +90 -0
package/package.json
ADDED
@@ -0,0 +1,90 @@
|
|
1
|
+
{
|
2
|
+
"name": "@zhangqingcq/vgce",
|
3
|
+
"version": "0.0.1",
|
4
|
+
"description": "Vector graphics configure editor. svg组态编辑器。基于vue3.3+ts+element-plus+vite",
|
5
|
+
"publishConfig": {
|
6
|
+
"access": "public"
|
7
|
+
},
|
8
|
+
"files": [
|
9
|
+
"dist"
|
10
|
+
],
|
11
|
+
"main": "./dist/vgce.umd.js",
|
12
|
+
"module": "./dist/vgce.mjs",
|
13
|
+
"exports": {
|
14
|
+
".": {
|
15
|
+
"import": "./dist/vgce.mjs",
|
16
|
+
"require": "./dist/vgce.umd.js"
|
17
|
+
},
|
18
|
+
"./dist/style.css": {
|
19
|
+
"import": "./dist/style.css",
|
20
|
+
"require": "./dist/style.css"
|
21
|
+
}
|
22
|
+
},
|
23
|
+
"scripts": {
|
24
|
+
"dev": "vite",
|
25
|
+
"build": "run-p type-check build-only",
|
26
|
+
"preview": "vite preview",
|
27
|
+
"build-only": "vite build",
|
28
|
+
"type-check": "vue-tsc --noEmit -p tsconfig.app.json --composite false",
|
29
|
+
"lib": "vue-tsc --noEmit --skipLibCheck && vite build --mode lib"
|
30
|
+
},
|
31
|
+
"repository": {
|
32
|
+
"type": "git",
|
33
|
+
"url": "git+https://github.com/RickyHeaven/VGCE.git"
|
34
|
+
},
|
35
|
+
"keywords": [
|
36
|
+
"vue",
|
37
|
+
"pinia",
|
38
|
+
"echarts",
|
39
|
+
"svg",
|
40
|
+
"vector",
|
41
|
+
"graphics",
|
42
|
+
"editor",
|
43
|
+
"element",
|
44
|
+
"vite",
|
45
|
+
"ricky",
|
46
|
+
"zhangqingcq"
|
47
|
+
],
|
48
|
+
"author": "RickyHeaven",
|
49
|
+
"license": "MIT",
|
50
|
+
"bugs": {
|
51
|
+
"url": "https://github.com/RickyHeaven/VGCE/issues"
|
52
|
+
},
|
53
|
+
"homepage": "https://github.com/RickyHeaven/VGCE#readme",
|
54
|
+
"dependencies": {
|
55
|
+
"@types/lodash": "^4.14.182",
|
56
|
+
"ace-builds": "^1.14.0",
|
57
|
+
"animate.css": "^4.1.1",
|
58
|
+
"axios": "^1.4.0",
|
59
|
+
"echarts": "^5.4.1",
|
60
|
+
"element-plus": "^2.3.7",
|
61
|
+
"lodash": "^4.17.21",
|
62
|
+
"mqtt": "^4.3.7",
|
63
|
+
"pinia": "^2.0.36",
|
64
|
+
"vue": "^3.3.4",
|
65
|
+
"vue-echarts": "^6.5.1",
|
66
|
+
"vue-router": "^4.2.0",
|
67
|
+
"vue3-ace-editor": "^2.2.2"
|
68
|
+
},
|
69
|
+
"devDependencies": {
|
70
|
+
"@tsconfig/node18": "^2.0.1",
|
71
|
+
"@types/node": "^18.16.8",
|
72
|
+
"@vitejs/plugin-vue": "^4.2.3",
|
73
|
+
"@vitejs/plugin-vue-jsx": "^3.0.1",
|
74
|
+
"@vue/tsconfig": "^0.4.0",
|
75
|
+
"less": "^4.1.3",
|
76
|
+
"npm-run-all": "^4.1.5",
|
77
|
+
"prettier": "3.0.0",
|
78
|
+
"typescript": "~5.1.6",
|
79
|
+
"vite": "4.3.9",
|
80
|
+
"vite-plugin-svg-icons": "^2.0.1",
|
81
|
+
"vite-plugin-windicss": "^1.9.0",
|
82
|
+
"vue-tsc": "^1.8.4",
|
83
|
+
"windicss": "^3.5.6"
|
84
|
+
},
|
85
|
+
"engines": {
|
86
|
+
"node": ">=18.16.0",
|
87
|
+
"npm": ">=9.5.1",
|
88
|
+
"pnpm": ">=8.6.0"
|
89
|
+
}
|
90
|
+
}
|