@macroui/macroui-vue 2.1.69 → 2.1.71

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,6 +1,6 @@
1
1
  {
2
2
  "name": "@macroui/macroui-vue",
3
- "version": "2.1.69",
3
+ "version": "2.1.71",
4
4
  "description": "基于 Vue 3 + MacroUI 兼容 Element Plus API 风格的组件库",
5
5
  "keywords": [
6
6
  "vue",
@@ -42,6 +42,22 @@
42
42
  "styles",
43
43
  "types"
44
44
  ],
45
+ "scripts": {
46
+ "dev:lib": "vite",
47
+ "dev:demo": "vite --config examples/vite.config.ts",
48
+ "build": "vite build",
49
+ "build:lib": "vite build --config vite.lib.config.ts",
50
+ "build:all": "node scripts/build-and-copy-locales.js",
51
+ "test": "vitest run tests/unit",
52
+ "test:watch": "vitest tests/unit",
53
+ "test:coverage": "vitest run tests/unit --coverage",
54
+ "test:unit": "vitest run tests/unit",
55
+ "test:e2e": "playwright test",
56
+ "test:e2e:ui": "playwright test --ui",
57
+ "test:e2e:headed": "playwright test --headed",
58
+ "lint": "eslint . --ext .vue,.js,.ts --fix",
59
+ "typecheck": "vue-tsc --noEmit"
60
+ },
45
61
  "peerDependencies": {
46
62
  "vue": "^3.2.0"
47
63
  },
@@ -79,21 +95,5 @@
79
95
  "bugs": {
80
96
  "url": "https://github.com/mobiui/macroui/issues"
81
97
  },
82
- "homepage": "https://github.com/mobiui/macroui#readme",
83
- "scripts": {
84
- "dev:lib": "vite",
85
- "dev:demo": "vite --config examples/vite.config.ts",
86
- "build": "vite build",
87
- "build:lib": "vite build --config vite.lib.config.ts",
88
- "build:all": "node scripts/build-and-copy-locales.js",
89
- "test": "vitest run tests/unit",
90
- "test:watch": "vitest tests/unit",
91
- "test:coverage": "vitest run tests/unit --coverage",
92
- "test:unit": "vitest run tests/unit",
93
- "test:e2e": "playwright test",
94
- "test:e2e:ui": "playwright test --ui",
95
- "test:e2e:headed": "playwright test --headed",
96
- "lint": "eslint . --ext .vue,.js,.ts --fix",
97
- "typecheck": "vue-tsc --noEmit"
98
- }
99
- }
98
+ "homepage": "https://github.com/mobiui/macroui#readme"
99
+ }