yd-admin 0.1.5 → 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,79 +1,82 @@
1
- {
2
- "name": "yd-admin",
3
- "version": "0.1.5",
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
- "docs:dev": "vitepress dev docs",
41
- "docs:build": "vitepress build docs",
42
- "docs:preview": "vitepress preview docs",
43
- "test": "vp test",
44
- "check": "vp check",
45
- "prepublishOnly": "vp run build",
46
- "prepare": "vp config"
47
- },
48
- "dependencies": {
49
- "async-validator": "^4.2.5",
50
- "pinia": "^3.0.0",
51
- "vue-i18n": "^11.1.0"
52
- },
53
- "devDependencies": {
54
- "@tsdown/css": "^0.21.7",
55
- "@types/node": "^25.5.0",
56
- "@typescript/native-preview": "7.0.0-dev.20260328.1",
57
- "@vitejs/plugin-vue": "^6.0.5",
58
- "bumpp": "^11.0.1",
59
- "happy-dom": "^20.9.0",
60
- "typescript": "^6.0.2",
61
- "unplugin-vue": "^7.1.1",
62
- "unplugin-vue-components": "^32.0.0",
63
- "vite-plus": "0.1.17",
64
- "vitepress": "^2.0.0-alpha.17",
65
- "vue": "^3.5.32",
66
- "vue-tsc": "^3.2.6"
67
- },
68
- "peerDependencies": {
69
- "vue": ">=3.4.0",
70
- "vue-router": ">=4.0.0"
71
- },
72
- "packageManager": "pnpm@10.33.0",
73
- "pnpm": {
74
- "overrides": {
75
- "vite": "npm:@voidzero-dev/vite-plus-core@latest",
76
- "vitest": "npm:@voidzero-dev/vite-plus-test@latest"
77
- }
78
- }
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
+ }
79
82
  }