- 新增OperationDashboard.vue全屏大屏组件 - 添加6个核心KPI指标卡片: 进水总量/出水总量/产销差率/营收额/平均水质/报警次数 - 实现6个ECharts图表: 供水趋势/水质分布/报警统计/管网空间/设备状态/营收分析 - 创建静态HTML版本operation-dashboard.html,使用CDN加载Vue3/ECharts/Element Plus - 更新路由配置,添加/operation路径支持 - 修复nextTick导入问题,优化build脚本 🚧 开发者: bot_dev1 📝 任务: #38 [BI] 运营仪表盘 + 供水专题大屏
53 lines
1.3 KiB
JSON
53 lines
1.3 KiB
JSON
{
|
|
"name": "rbush",
|
|
"version": "4.0.1",
|
|
"description": "High-performance 2D spatial index for rectangles (based on R*-tree with bulk loading and bulk insertion algorithms)",
|
|
"homepage": "https://github.com/mourner/rbush",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git://github.com/mourner/rbush.git"
|
|
},
|
|
"keywords": [
|
|
"spatial",
|
|
"tree",
|
|
"search",
|
|
"rectangle",
|
|
"index",
|
|
"math"
|
|
],
|
|
"author": "Volodymyr Agafonkin",
|
|
"license": "MIT",
|
|
"type": "module",
|
|
"exports": "./index.js",
|
|
"main": "index.js",
|
|
"module": "index.js",
|
|
"browser": "rbush.min.js",
|
|
"jsdelivr": "rbush.min.js",
|
|
"unpkg": "rbush.min.js",
|
|
"devDependencies": {
|
|
"@rollup/plugin-buble": "^1.0.3",
|
|
"@rollup/plugin-node-resolve": "^15.2.3",
|
|
"@rollup/plugin-terser": "^0.4.4",
|
|
"benchmark": "^2.1.4",
|
|
"eslint": "^9.9.0",
|
|
"eslint-config-mourner": "^4.0.2",
|
|
"rollup": "^4.21.0"
|
|
},
|
|
"scripts": {
|
|
"pretest": "eslint index.js test/test.js bench/*.js",
|
|
"test": "node --test",
|
|
"perf": "node ./bench/perf.js",
|
|
"cov": "node --test --experimental-test-coverage",
|
|
"build": "rollup -c",
|
|
"prepublishOnly": "npm run test && npm run build"
|
|
},
|
|
"files": [
|
|
"index.js",
|
|
"rbush.js",
|
|
"rbush.min.js"
|
|
],
|
|
"dependencies": {
|
|
"quickselect": "^3.0.0"
|
|
}
|
|
}
|