mirror of
https://gitee.com/newgateway/vtj.git
synced 2026-06-23 03:33:24 +08:00
- 在多个子项目和模板中统一 Vue 依赖版本 - 使用波浪号版本符号以允许补丁更新 - 确保依赖项版本一致性,便于维护和构建 - 更新范围涵盖应用、插件、开发环境、文档及平台相关包
46 lines
1.2 KiB
JSON
46 lines
1.2 KiB
JSON
{
|
|
"name": "vtj-material",
|
|
"private": true,
|
|
"version": "0.17.8",
|
|
"type": "module",
|
|
"scripts": {
|
|
"setup": "pnpm install --unsafe-perm --registry=https://registry.npmmirror.com",
|
|
"dev": "vite --config vite.dev.config.ts",
|
|
"build": "npm run build:library && npm run build:material",
|
|
"build:library": "vue-tsc && vite build && cross-env UMD=true vite build",
|
|
"build:material": "vue-tsc && vite build --config vite.material.config.ts"
|
|
},
|
|
"dependencies": {
|
|
"@vueuse/core": "~14.1.0",
|
|
"element-plus": "~2.13.0"
|
|
},
|
|
"devDependencies": {
|
|
"@vtj/cli": "workspace:~",
|
|
"@vtj/core": "workspace:~",
|
|
"@vtj/pro": "workspace:~",
|
|
"@vtj/web": "workspace:~",
|
|
"vue": "~3.5.37",
|
|
"vue-router": "~4.6.0"
|
|
},
|
|
"files": [
|
|
"dist",
|
|
"types"
|
|
],
|
|
"main": "dist/index.umd.js",
|
|
"module": "dist/index.mjs",
|
|
"types": "types/index.d.ts",
|
|
"exports": {
|
|
"./dist/style.css": "./dist/style.css",
|
|
".": {
|
|
"types": "./types/index.d.ts",
|
|
"import": "./dist/index.mjs",
|
|
"require": "./dist/ndex.umd.js"
|
|
},
|
|
"./*": "./*"
|
|
},
|
|
"publishConfig": {
|
|
"access": "public"
|
|
},
|
|
"gitHead": "d03843144f07c2d98c1e0c72c8c6eb1117c01722"
|
|
}
|