- Vue 3 + TypeScript + Element Plus 前端界面 - Pinia 状态管理 - Vue Router 4 路由管理 - Axios HTTP 客户端 - MSW (Mock Service Worker) 开发环境模拟 - 账户管理界面 (列表、详情、三科目余额展示) - 交易管理界面 (列表、详情) - 对账管理界面 (三账校验) - 完善的 API 客户端封装 - Docker 容器化配置 - Nginx 配置用于生产环境
37 lines
973 B
JSON
37 lines
973 B
JSON
{
|
|
"name": "@vue/devtools-api",
|
|
"version": "6.6.4",
|
|
"description": "Interact with the Vue devtools from the page",
|
|
"author": {
|
|
"name": "Guillaume Chau"
|
|
},
|
|
"license": "MIT",
|
|
"repository": {
|
|
"url": "https://github.com/vuejs/vue-devtools.git",
|
|
"type": "git",
|
|
"directory": "packages/api"
|
|
},
|
|
"sideEffects": false,
|
|
"main": "lib/cjs/index.js",
|
|
"browser": "lib/esm/index.js",
|
|
"module": "lib/esm/index.js",
|
|
"types": "lib/esm/index.d.ts",
|
|
"files": [
|
|
"lib/cjs",
|
|
"lib/esm"
|
|
],
|
|
"publishConfig": {
|
|
"access": "public"
|
|
},
|
|
"scripts": {
|
|
"build": "rimraf lib && yarn build:esm && yarn build:cjs",
|
|
"build:esm": "tsc --module es2015 --outDir lib/esm -d",
|
|
"build:cjs": "tsc --module commonjs --outDir lib/cjs",
|
|
"build:watch": "yarn tsc --module es2015 --outDir lib/esm -d -w --sourceMap"
|
|
},
|
|
"devDependencies": {
|
|
"@types/node": "^20.11.16",
|
|
"@types/webpack-env": "^1.15.1",
|
|
"typescript": "^5.3.3"
|
|
}
|
|
} |