- Client: Go-based Windows hardware monitoring (CPU, GPU, memory, disk, network, power) - Server: Go + Gin + SQLite backend with REST API - Frontend: Vue 3 + Element Plus dashboard - Docker deployment support - Windows service installation script
26 lines
518 B
JSON
26 lines
518 B
JSON
{
|
|
"name": "pc-monitor-web",
|
|
"version": "1.0.0",
|
|
"private": true,
|
|
"type": "module",
|
|
"scripts": {
|
|
"dev": "vite",
|
|
"build": "vue-tsc && vite build",
|
|
"preview": "vite preview"
|
|
},
|
|
"dependencies": {
|
|
"vue": "^3.4.21",
|
|
"vue-router": "^4.3.0",
|
|
"element-plus": "^2.7.0",
|
|
"axios": "^1.6.8",
|
|
"echarts": "^5.5.0",
|
|
"vue-echarts": "^6.6.9"
|
|
},
|
|
"devDependencies": {
|
|
"@vitejs/plugin-vue": "^5.0.4",
|
|
"typescript": "^5.4.0",
|
|
"vite": "^5.2.0",
|
|
"vue-tsc": "^2.0.6"
|
|
}
|
|
}
|