@awen-utils/vue-element 0.0.1

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,63 @@
1
+ {
2
+ "name": "@awen-utils/vue-element",
3
+ "version": "0.0.1",
4
+ "description": "Moon UI Vue - 基于 Element Plus 的二次封装组件库",
5
+ "type": "module",
6
+ "main": "./dist/index.cjs",
7
+ "module": "./dist/index.js",
8
+ "types": "./dist/index.d.ts",
9
+ "exports": {
10
+ ".": {
11
+ "import": {
12
+ "types": "./dist/index.d.ts",
13
+ "default": "./dist/index.js"
14
+ },
15
+ "require": {
16
+ "types": "./dist/index.d.cts",
17
+ "default": "./dist/index.cjs"
18
+ }
19
+ },
20
+ "./style.css": "./dist/style.css"
21
+ },
22
+ "files": [
23
+ "dist"
24
+ ],
25
+ "scripts": {
26
+ "build": "vite build",
27
+ "dev": "vite",
28
+ "clean": "rm -rf dist",
29
+ "lint": "eslint src --ext .ts,.vue",
30
+ "type-check": "vue-tsc --noEmit"
31
+ },
32
+ "keywords": [
33
+ "vue",
34
+ "vue3",
35
+ "element-plus",
36
+ "components",
37
+ "ui",
38
+ "moon"
39
+ ],
40
+ "publishConfig": {
41
+ "access": "public",
42
+ "registry": "https://registry.npmjs.org/"
43
+ },
44
+ "author": "",
45
+ "license": "MIT",
46
+ "peerDependencies": {
47
+ "element-plus": "^2.4.0",
48
+ "vue": "^3.3.0"
49
+ },
50
+ "dependencies": {
51
+ "@awen-utils/shared": "workspace:*"
52
+ },
53
+ "devDependencies": {
54
+ "@types/node": "^25.5.0",
55
+ "@vitejs/plugin-vue": "^5.2.0",
56
+ "element-plus": "^2.9.0",
57
+ "typescript": "^5.8.0",
58
+ "vite": "^7.0.0",
59
+ "vite-plugin-dts": "^4.5.0",
60
+ "vue": "^3.5.0",
61
+ "vue-tsc": "^2.2.0"
62
+ }
63
+ }