Dashboard: - Add aggregate stats across all running miners (total hashrate, shares) - Add workers table with per-miner stats, efficiency, and controls - Show hashrate bars and efficiency badges for each worker - Support stopping individual workers or all at once TT-Miner: - Implement Install, Start, GetStats, CheckInstallation, Uninstall - Add TT-Miner to Manager's StartMiner and ListAvailableMiners - Support GPU-specific config options (devices, intensity, cliArgs) Chart: - Improve styling with WA-Pro theme variables - Add hashrate unit formatting (H/s, kH/s, MH/s) - Better tooltip and axis styling Also: - Fix XMRig download URLs (linux-static-x64, windows-x64) - Add Playwright E2E testing infrastructure - Add XMR pool research documentation 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
62 lines
1.7 KiB
JSON
62 lines
1.7 KiB
JSON
{
|
|
"name": "ui",
|
|
"version": "0.0.0",
|
|
"scripts": {
|
|
"ng": "ng",
|
|
"start": "ng serve",
|
|
"build": "ng build --output-path=dist/ui && cat dist/ui/runtime.js dist/ui/polyfills.js dist/ui/main.js > dist/ui/mbe-mining-dashboard.js",
|
|
"watch": "ng build --watch --configuration development",
|
|
"test": "ng test",
|
|
"e2e": "playwright test",
|
|
"e2e:ui": "playwright test --ui",
|
|
"e2e:api": "API_ONLY=true playwright test --project=api",
|
|
"e2e:headed": "playwright test --headed",
|
|
"e2e:report": "playwright show-report"
|
|
},
|
|
"prettier": {
|
|
"printWidth": 100,
|
|
"singleQuote": true,
|
|
"overrides": [
|
|
{
|
|
"files": "*.html",
|
|
"options": {
|
|
"parser": "angular"
|
|
}
|
|
}
|
|
]
|
|
},
|
|
"private": true,
|
|
"dependencies": {
|
|
"@angular-devkit/build-angular": "^20.3.9",
|
|
"@angular/common": "^20.3.0",
|
|
"@angular/compiler": "^20.3.0",
|
|
"@angular/core": "^20.3.0",
|
|
"@angular/elements": "^20.3.10",
|
|
"@angular/forms": "^20.3.0",
|
|
"@angular/platform-browser": "^20.3.0",
|
|
"@angular/router": "^20.3.0",
|
|
"@awesome.me/webawesome": "^3.0.0",
|
|
"highcharts": "^12.4.0",
|
|
"highcharts-angular": "^5.2.0",
|
|
"install": "^0.13.0",
|
|
"npm": "^11.6.2",
|
|
"rxjs": "~7.8.0",
|
|
"tslib": "^2.3.0",
|
|
"zone.js": "~0.15.0"
|
|
},
|
|
"devDependencies": {
|
|
"@angular/build": "^20.3.6",
|
|
"@angular/cli": "^20.3.6",
|
|
"@angular/compiler-cli": "^20.3.0",
|
|
"@playwright/test": "^1.40.0",
|
|
"@types/jasmine": "~5.1.0",
|
|
"jasmine-core": "~5.9.0",
|
|
"karma": "~6.4.0",
|
|
"karma-chrome-launcher": "~3.2.0",
|
|
"karma-coverage": "~2.2.0",
|
|
"karma-jasmine": "~5.1.0",
|
|
"karma-jasmine-html-reporter": "~2.1.0",
|
|
"ngx-build-plus": "^20.0.0",
|
|
"typescript": "~5.9.2"
|
|
}
|
|
}
|