@huazio/ah-ui 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/package.json ADDED
@@ -0,0 +1,56 @@
1
+ {
2
+ "name": "@huazio/ah-ui",
3
+ "version": "1.0.0",
4
+ "description": "基于 Element Plus 封装的 Vue3 业务组件库",
5
+ "type": "module",
6
+ "main": "dist/index.umd.js",
7
+ "module": "dist/index.es.js",
8
+ "types": "dist/index.d.ts",
9
+ "exports": {
10
+ ".": {
11
+ "import": "./dist/index.es.js",
12
+ "require": "./dist/index.umd.js"
13
+ }
14
+ },
15
+ "files": [
16
+ "dist"
17
+ ],
18
+ "scripts": {
19
+ "dev": "vite",
20
+ "build": "vue-tsc && vite build",
21
+ "build:lib": "vite build --config vite.lib.config.ts",
22
+ "docs:dev": "vitepress dev docs",
23
+ "docs:build": "vitepress build docs",
24
+ "docs:preview": "vitepress preview docs",
25
+ "publish": "npm run build:lib && npm publish --access public"
26
+ },
27
+ "peerDependencies": {
28
+ "vue": "^3.2.0",
29
+ "element-plus": "^2.3.0"
30
+ },
31
+ "dependencies": {
32
+ "@element-plus/icons-vue": "^2.3.1",
33
+ "xlsx": "^0.18.5"
34
+ },
35
+ "devDependencies": {
36
+ "@types/node": "^20.10.0",
37
+ "@vitejs/plugin-vue": "^5.0.0",
38
+ "element-plus": "^2.3.14",
39
+ "sass": "^1.69.5",
40
+ "typescript": "^5.3.2",
41
+ "unplugin-vue-components": "^0.26.0",
42
+ "unplugin-auto-import": "^0.17.2",
43
+ "vite": "^5.0.8",
44
+ "vitepress": "^1.0.0-rc.44",
45
+ "vue": "^3.3.11",
46
+ "vue-tsc": "^1.8.25"
47
+ },
48
+ "keywords": [
49
+ "vue",
50
+ "element-plus",
51
+ "component-library",
52
+ "ui-components"
53
+ ],
54
+ "author": "",
55
+ "license": "MIT"
56
+ }