@openvort/vort-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,81 @@
1
+ {
2
+ "name": "@openvort/vort-ui",
3
+ "version": "1.0.0",
4
+ "description": "Vort UI - 融合 Ant Design 视觉与 Element Plus API 的 Vue 3 组件库",
5
+ "private": false,
6
+ "type": "module",
7
+ "main": "./dist/vort-ui.umd.js",
8
+ "module": "./dist/vort-ui.es.js",
9
+ "types": "./dist/index.d.ts",
10
+ "exports": {
11
+ ".": {
12
+ "types": "./dist/index.d.ts",
13
+ "import": "./dist/vort-ui.es.js",
14
+ "require": "./dist/vort-ui.umd.js"
15
+ },
16
+ "./styles": "./dist/style.css",
17
+ "./style.css": "./dist/style.css",
18
+ "./resolver": {
19
+ "types": "./dist/resolver.d.ts",
20
+ "import": "./dist/resolver.js",
21
+ "require": "./dist/resolver.js"
22
+ }
23
+ },
24
+ "files": [
25
+ "dist/*.js",
26
+ "dist/*.d.ts",
27
+ "dist/*.css",
28
+ "README.md",
29
+ "LICENSE"
30
+ ],
31
+ "publishConfig": {
32
+ "access": "public",
33
+ "registry": "https://registry.npmjs.org"
34
+ },
35
+ "scripts": {
36
+ "dev": "vite",
37
+ "prebuild": "pnpm sync:demo && pnpm sync:components",
38
+ "build": "npm run build:lib && npm run build:demo",
39
+ "build:lib": "vite build --config vite.config.lib.ts",
40
+ "build:demo": "vite build",
41
+ "preview": "vite preview",
42
+ "sync:all": "pnpm sync:components && pnpm sync:demo",
43
+ "sync:demo": "tsx scripts/sync-demo-from-admin.ts",
44
+ "sync:components": "tsx scripts/sync-components.ts",
45
+ "type-check": "vue-tsc --noEmit",
46
+ "publish:prepare": "tsx scripts/publish.ts",
47
+ "publish:all": "npm version patch --no-git-tag-version && pnpm publish:prepare && npm publish --access public --registry=https://registry.npmjs.org",
48
+ "prepublishOnly": "npm run sync:all && npm run build:lib"
49
+ },
50
+ "peerDependencies": {
51
+ "vue": "^3.4.0"
52
+ },
53
+ "dependencies": {
54
+ "@tanstack/vue-virtual": "^3.13.18",
55
+ "@vee-validate/zod": "^4.15.1",
56
+ "@vueuse/core": "^14.2.0",
57
+ "clsx": "^2.1.0",
58
+ "dayjs": "^1.11.19",
59
+ "lucide-vue-next": "^0.400.0",
60
+ "reka-ui": "^2.8.0",
61
+ "tailwind-merge": "^2.5.0",
62
+ "vee-validate": "^4.15.1",
63
+ "vue": "^3.5.0",
64
+ "vue-router": "^4.4.0",
65
+ "zod": "^4.3.6"
66
+ },
67
+ "devDependencies": {
68
+ "@types/node": "^20.10.0",
69
+ "@vitejs/plugin-vue": "^5.0.0",
70
+ "@vue/tsconfig": "^0.8.0",
71
+ "autoprefixer": "^10.4.0",
72
+ "postcss": "^8.4.0",
73
+ "tailwindcss": "^3.4.0",
74
+ "tsx": "^4.7.0",
75
+ "typescript": "^5.5.0",
76
+ "unplugin-vue-components": "^31.0.0",
77
+ "vite": "^6.0.0",
78
+ "vite-plugin-dts": "^4.5.4",
79
+ "vue-tsc": "^2.0.0"
80
+ }
81
+ }