yd-admin 0.1.4 → 0.1.7

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 CHANGED
@@ -1,75 +1,82 @@
1
- {
2
- "name": "yd-admin",
3
- "version": "0.1.4",
4
- "description": "基于 Vue 3 的后台管理框架通用组件库 - 轻量、高效、主题可定制",
5
- "keywords": [
6
- "admin",
7
- "component-library",
8
- "typescript",
9
- "ui-framework",
10
- "vue",
11
- "vue3",
12
- "后台管理"
13
- ],
14
- "license": "MIT",
15
- "author": "JYD <1585337481@qq.com>",
16
- "repository": {
17
- "type": "git",
18
- "url": "https://gitee.com/yuandingjyd/yd-admin.git"
19
- },
20
- "files": [
21
- "dist"
22
- ],
23
- "type": "module",
24
- "sideEffects": [
25
- "*.css"
26
- ],
27
- "types": "./dist/index.d.ts",
28
- "exports": {
29
- ".": "./dist/index.js",
30
- "./package.json": "./package.json",
31
- "./style.css": "./dist/style.css"
32
- },
33
- "publishConfig": {
34
- "access": "public"
35
- },
36
- "scripts": {
37
- "build": "vp pack",
38
- "dev": "vp pack --watch",
39
- "demo": "cd apps/demo && vp dev",
40
- "test": "vp test",
41
- "check": "vp check",
42
- "prepublishOnly": "vp run build",
43
- "prepare": "vp config"
44
- },
45
- "dependencies": {
46
- "async-validator": "^4.2.5",
47
- "pinia": "^3.0.0",
48
- "vue-i18n": "^11.1.0"
49
- },
50
- "devDependencies": {
51
- "@tsdown/css": "^0.21.7",
52
- "@types/node": "^25.5.0",
53
- "@typescript/native-preview": "7.0.0-dev.20260328.1",
54
- "@vitejs/plugin-vue": "^6.0.5",
55
- "bumpp": "^11.0.1",
56
- "happy-dom": "^20.9.0",
57
- "typescript": "^6.0.2",
58
- "unplugin-vue": "^7.1.1",
59
- "unplugin-vue-components": "^32.0.0",
60
- "vite-plus": "^0.1.14",
61
- "vitepress": "^1.6.0",
62
- "vue": "^3.5.32",
63
- "vue-tsc": "^3.2.6"
64
- },
65
- "peerDependencies": {
66
- "vue": ">=3.4.0"
67
- },
68
- "packageManager": "pnpm@10.33.0",
69
- "pnpm": {
70
- "overrides": {
71
- "vite": "npm:@voidzero-dev/vite-plus-core@latest",
72
- "vitest": "npm:@voidzero-dev/vite-plus-test@latest"
73
- }
74
- }
1
+ {
2
+ "name": "yd-admin",
3
+ "version": "0.1.7",
4
+ "description": "基于 Vue 3 的后台管理框架通用组件库 - 轻量、高效、主题可定制",
5
+ "keywords": [
6
+ "admin",
7
+ "component-library",
8
+ "typescript",
9
+ "ui-framework",
10
+ "vue",
11
+ "vue3",
12
+ "后台管理"
13
+ ],
14
+ "license": "MIT",
15
+ "author": "JYD <1585337481@qq.com>",
16
+ "repository": {
17
+ "type": "git",
18
+ "url": "https://gitee.com/yuandingjyd/yd-admin.git"
19
+ },
20
+ "files": [
21
+ "dist"
22
+ ],
23
+ "type": "module",
24
+ "sideEffects": [
25
+ "*.css"
26
+ ],
27
+ "types": "./dist/index.d.ts",
28
+ "exports": {
29
+ ".": "./dist/index.js",
30
+ "./package.json": "./package.json",
31
+ "./style.css": "./dist/style.css"
32
+ },
33
+ "publishConfig": {
34
+ "access": "public"
35
+ },
36
+ "scripts": {
37
+ "build": "vp pack",
38
+ "dev": "vp pack --watch",
39
+ "test": "vp test",
40
+ "check": "vp check",
41
+ "prepublishOnly": "vp run build",
42
+ "prepare": "vp config",
43
+ "storybook": "storybook dev -p 6006",
44
+ "build-storybook": "storybook build"
45
+ },
46
+ "dependencies": {
47
+ "async-validator": "^4.2.5",
48
+ "pinia": "^3.0.0",
49
+ "vue-i18n": "^11.1.0"
50
+ },
51
+ "devDependencies": {
52
+ "@storybook/addon-essentials": "8.6.14",
53
+ "@storybook/addon-interactions": "8.6.14",
54
+ "@storybook/test": "8.6.15",
55
+ "@storybook/vue3": "8.6.14",
56
+ "@storybook/vue3-vite": "8.6.14",
57
+ "@tsdown/css": "^0.21.7",
58
+ "@types/node": "^25.5.0",
59
+ "@typescript/native-preview": "7.0.0-dev.20260328.1",
60
+ "@vitejs/plugin-vue": "^6.0.5",
61
+ "bumpp": "^11.0.1",
62
+ "happy-dom": "^20.9.0",
63
+ "storybook": "8.6.14",
64
+ "typescript": "^6.0.2",
65
+ "unplugin-vue": "^7.1.1",
66
+ "unplugin-vue-components": "^32.0.0",
67
+ "vite-plus": "0.1.17",
68
+ "vue": "^3.5.32",
69
+ "vue-tsc": "^3.2.6"
70
+ },
71
+ "peerDependencies": {
72
+ "vue": ">=3.4.0",
73
+ "vue-router": ">=4.0.0"
74
+ },
75
+ "packageManager": "pnpm@10.33.0",
76
+ "pnpm": {
77
+ "overrides": {
78
+ "vite": "npm:@voidzero-dev/vite-plus-core@latest",
79
+ "vitest": "npm:@voidzero-dev/vite-plus-test@latest"
80
+ }
81
+ }
75
82
  }