Files
finance-master/apps/finance/package.json
chenghuan 4163a322d7 feat: 初始化财务系统基础架构
新增财务系统基础架构,包括:
- 核心API接口(用户、菜单、权限)
- 状态管理模块(系统字典)
- 路由配置(仪表盘、系统管理)
- 基础页面布局(登录、个人中心、错误页)
- 国际化配置
- 环境变量配置
- 组件库集成(表格、表单、图表)
- 构建工具配置(vite、tailwind)
- 权限控制模块
2026-01-06 18:01:42 +08:00

48 lines
1.3 KiB
JSON

{
"name": "@zmzm/finance",
"version": "0.0.1",
"homepage": "",
"repository": {
"type": "git",
"url": "git+https://git.nuttyreading.com/zm/finance-master.git",
"directory": "apps/finance"
},
"license": "MIT",
"type": "module",
"scripts": {
"build": "pnpm vite build --mode production",
"build:analyze": "pnpm vite build --mode analyze",
"dev": "pnpm vite --mode development",
"preview": "vite preview",
"typecheck": "vue-tsc --noEmit --skipLibCheck"
},
"imports": {
"#/*": "./src/*"
},
"dependencies": {
"@vben-core/shadcn-ui": "workspace:*",
"@vben-core/shared": "workspace:*",
"@vben-core/typings": "workspace:*",
"@vben/access": "workspace:*",
"@vben/common-ui": "workspace:*",
"@vben/constants": "workspace:*",
"@vben/hooks": "workspace:*",
"@vben/icons": "workspace:*",
"@vben/layouts": "workspace:*",
"@vben/locales": "workspace:*",
"@vben/plugins": "workspace:*",
"@vben/preferences": "workspace:*",
"@vben/request": "workspace:*",
"@vben/stores": "workspace:*",
"@vben/styles": "workspace:*",
"@vben/types": "workspace:*",
"@vben/utils": "workspace:*",
"@vueuse/core": "catalog:",
"ant-design-vue": "catalog:",
"dayjs": "catalog:",
"pinia": "catalog:",
"vue": "catalog:",
"vue-router": "catalog:"
}
}