-
Notifications
You must be signed in to change notification settings - Fork 82
Expand file tree
/
Copy pathpackage.json
More file actions
91 lines (91 loc) · 2.32 KB
/
package.json
File metadata and controls
91 lines (91 loc) · 2.32 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
{
"name": "@openvort/vort-ui",
"version": "1.3.0",
"description": "Vort UI - 融合 Ant Design 视觉与 Element Plus API 的 Vue 3 组件库",
"license": "MIT",
"private": false,
"type": "module",
"main": "./dist/vort-ui.es.js",
"module": "./dist/vort-ui.es.js",
"types": "./dist/index.d.ts",
"web-types": "./dist/web-types.json",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/vort-ui.es.js"
},
"./styles": "./dist/style.css",
"./style.css": "./dist/style.css",
"./resolver": {
"types": "./dist/resolver.d.ts",
"import": "./dist/resolver.js"
}
},
"files": [
"dist/*.js",
"dist/*.d.ts",
"dist/*.css",
"dist/web-types.json",
"README.md",
"LICENSE"
],
"homepage": "https://github.com/openvort/vort-ui",
"repository": {
"type": "git",
"url": "git+https://github.com/openvort/vort-ui.git"
},
"bugs": {
"url": "https://github.com/openvort/vort-ui/issues"
},
"keywords": [
"vue",
"vue3",
"component-library",
"ui-components",
"typescript",
"ant-design",
"element-plus",
"vite"
],
"scripts": {
"dev": "vite",
"build": "pnpm build:lib && pnpm build:demo",
"build:lib": "vite build --config vite.config.lib.ts && pnpm build:resolver && pnpm generate:web-types",
"build:resolver": "node scripts/build-resolver.mjs",
"build:demo": "vite build",
"generate:web-types": "tsx scripts/generate-web-types.ts",
"preview": "vite preview",
"type-check": "vue-tsc --noEmit"
},
"peerDependencies": {
"vue": "^3.4.0"
},
"dependencies": {
"@tanstack/vue-virtual": "^3.13.18",
"@vee-validate/zod": "^4.15.1",
"@vueuse/core": "^14.2.0",
"clsx": "^2.1.0",
"dayjs": "^1.11.19",
"lucide-vue-next": "^0.400.0",
"reka-ui": "^2.8.0",
"tailwind-merge": "^2.5.0",
"vee-validate": "^4.15.1",
"vue": "^3.5.0",
"vue-router": "^4.4.0",
"zod": "^4.3.6"
},
"devDependencies": {
"@types/node": "^20.10.0",
"@vitejs/plugin-vue": "^5.0.0",
"@vue/tsconfig": "^0.8.0",
"autoprefixer": "^10.4.0",
"postcss": "^8.4.0",
"tailwindcss": "^3.4.0",
"tsx": "^4.7.0",
"typescript": "^5.5.0",
"unplugin-vue-components": "^31.0.0",
"vite": "^6.0.0",
"vite-plugin-dts": "^4.5.4",
"vue-tsc": "^2.0.0"
}
}