@ued_fpi/data-visual 1.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +16 -0
- package/package.json +57 -0
package/README.md
ADDED
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
<br />
|
|
2
|
+
<br />
|
|
3
|
+
<div style="text-align:center">
|
|
4
|
+
<b style="font-size:30px">@ued_fpi/element-plus-expand</b>
|
|
5
|
+
<p>基于Vite4+TypeScript的Vue3组件库开发框架</p>
|
|
6
|
+
<img style="display:inline" src="https://img.shields.io/npm/v/@ued_fpi/element-plus-expand" />
|
|
7
|
+
|
|
8
|
+
<img style="display:inline;margin-left:10px" src="https://img.shields.io/npm/dt/@ued_fpi/element-plus-expand" />
|
|
9
|
+
</div>
|
|
10
|
+
|
|
11
|
+
**@ued_fpi/element-plus-expand**是一个 **Vue3**, **element-plus** 组件库开发环境框架, 支持`按需加载`,`单元测试`等功能,让我们能更专注于业务组件的开发。
|
|
12
|
+
|
|
13
|
+
## 官网地址
|
|
14
|
+
|
|
15
|
+
[element-plus-expand](http://ued.fpi-inc.site/fpi-component/page/component/element-plus-expand/quickstart.html)
|
|
16
|
+
|
package/package.json
ADDED
|
@@ -0,0 +1,57 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@ued_fpi/data-visual",
|
|
3
|
+
"version": "1.0.0",
|
|
4
|
+
"main": "./dist/lib/index.js",
|
|
5
|
+
"module": "./dist/es/index.mjs",
|
|
6
|
+
"typings": "./dist/lib/index.d.ts",
|
|
7
|
+
"exports": {
|
|
8
|
+
".": {
|
|
9
|
+
"require": "./dist/lib/index.js",
|
|
10
|
+
"import": "./dist/es/index.mjs",
|
|
11
|
+
"types": "./dist/es/index.d.ts"
|
|
12
|
+
},
|
|
13
|
+
"./style": "./dist/es/style.css",
|
|
14
|
+
"./es": "./dist/es/index.mjs",
|
|
15
|
+
"./lib": "./dist/lib/index.js",
|
|
16
|
+
"./es/*.mjs": "./dist/es/*.mjs",
|
|
17
|
+
"./es/*": "./dist/es/*.mjs",
|
|
18
|
+
"./lib/*.js": "./dist/lib/*.js",
|
|
19
|
+
"./lib/*": "./dist/lib/*.js",
|
|
20
|
+
"./es/*.css": "./dist/es/*.css",
|
|
21
|
+
"./lib/*.css": "./dist/lib/*.css",
|
|
22
|
+
"./*": "./*"
|
|
23
|
+
},
|
|
24
|
+
"files": [
|
|
25
|
+
"es",
|
|
26
|
+
"lib"
|
|
27
|
+
],
|
|
28
|
+
"keywords": [
|
|
29
|
+
"element-plus",
|
|
30
|
+
"vue3组件库",
|
|
31
|
+
"大屏组件"
|
|
32
|
+
],
|
|
33
|
+
"style": "./dist/es/style.css",
|
|
34
|
+
"sideEffects": [
|
|
35
|
+
"./dist/es/**/style/*",
|
|
36
|
+
"./dist/lib/**/style/*",
|
|
37
|
+
"**/*.css",
|
|
38
|
+
"./dist/es/**/*.css",
|
|
39
|
+
"./dist/lib/**/*.css"
|
|
40
|
+
],
|
|
41
|
+
"author": "",
|
|
42
|
+
"license": "MIT",
|
|
43
|
+
"description": "",
|
|
44
|
+
"scripts": {
|
|
45
|
+
"build": "vite build",
|
|
46
|
+
"build:types": "vue-tsc -p tsconfig.declaration.json",
|
|
47
|
+
"test": "vitest",
|
|
48
|
+
"coverage": "vitest run --coverage",
|
|
49
|
+
"release": "release-it",
|
|
50
|
+
"browser": "../browser.sh",
|
|
51
|
+
"publish": "gulp -f ../component/script/publish/index.ts"
|
|
52
|
+
},
|
|
53
|
+
"publishConfig": {
|
|
54
|
+
"access": "public",
|
|
55
|
+
"tag": "@ued_fpi/data-visual"
|
|
56
|
+
}
|
|
57
|
+
}
|