2025-11-09 04:41:07 +00:00
|
|
|
{
|
|
|
|
|
"name": "ui",
|
|
|
|
|
"version": "0.0.0",
|
|
|
|
|
"scripts": {
|
|
|
|
|
"ng": "ng",
|
|
|
|
|
"start": "ng serve",
|
2025-12-29 22:10:45 +00:00
|
|
|
"build": "ng build --output-path=dist/ui && cat dist/ui/browser/polyfills.js dist/ui/browser/main.js > dist/ui/mbe-mining-dashboard.js",
|
2025-11-09 04:41:07 +00:00
|
|
|
"watch": "ng build --watch --configuration development",
|
feat: Add multi-miner dashboard support and TT-Miner implementation
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>
2025-12-27 22:48:20 +00:00
|
|
|
"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"
|
2025-11-09 04:41:07 +00:00
|
|
|
},
|
|
|
|
|
"prettier": {
|
|
|
|
|
"printWidth": 100,
|
|
|
|
|
"singleQuote": true,
|
|
|
|
|
"overrides": [
|
|
|
|
|
{
|
|
|
|
|
"files": "*.html",
|
|
|
|
|
"options": {
|
|
|
|
|
"parser": "angular"
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
]
|
|
|
|
|
},
|
|
|
|
|
"private": true,
|
|
|
|
|
"dependencies": {
|
2025-11-09 19:06:05 +00:00
|
|
|
"@angular-devkit/build-angular": "^20.3.9",
|
2025-11-26 23:56:14 +00:00
|
|
|
"@angular/common": "^20.3.14",
|
2026-01-13 16:48:09 +00:00
|
|
|
"@angular/compiler": "^20.3.0",
|
|
|
|
|
"@angular/core": "^20.3.16",
|
2025-11-09 19:06:05 +00:00
|
|
|
"@angular/elements": "^20.3.10",
|
2025-11-09 04:41:07 +00:00
|
|
|
"@angular/forms": "^20.3.0",
|
|
|
|
|
"@angular/platform-browser": "^20.3.0",
|
|
|
|
|
"@angular/router": "^20.3.0",
|
2025-11-10 02:22:37 +00:00
|
|
|
"highcharts": "^12.4.0",
|
|
|
|
|
"highcharts-angular": "^5.2.0",
|
2025-11-09 19:06:05 +00:00
|
|
|
"install": "^0.13.0",
|
|
|
|
|
"npm": "^11.6.2",
|
2025-11-09 04:41:07 +00:00
|
|
|
"rxjs": "~7.8.0",
|
|
|
|
|
"tslib": "^2.3.0",
|
|
|
|
|
"zone.js": "~0.15.0"
|
|
|
|
|
},
|
|
|
|
|
"devDependencies": {
|
|
|
|
|
"@angular/build": "^20.3.6",
|
2025-12-29 22:12:14 +00:00
|
|
|
"@angular/cli": "^20.3.13",
|
2025-11-09 04:41:07 +00:00
|
|
|
"@angular/compiler-cli": "^20.3.0",
|
feat: Add multi-miner dashboard support and TT-Miner implementation
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>
2025-12-27 22:48:20 +00:00
|
|
|
"@playwright/test": "^1.40.0",
|
2025-12-29 22:10:45 +00:00
|
|
|
"@tailwindcss/forms": "^0.5.11",
|
|
|
|
|
"@tailwindcss/postcss": "^4.1.18",
|
2025-11-09 04:41:07 +00:00
|
|
|
"@types/jasmine": "~5.1.0",
|
2025-12-29 22:10:45 +00:00
|
|
|
"autoprefixer": "^10.4.23",
|
2025-11-09 04:41:07 +00:00
|
|
|
"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",
|
2025-12-07 17:08:26 +00:00
|
|
|
"ngx-build-plus": "^20.0.0",
|
2025-12-29 22:10:45 +00:00
|
|
|
"postcss": "^8.5.6",
|
|
|
|
|
"tailwindcss": "^4.1.18",
|
2025-11-09 04:41:07 +00:00
|
|
|
"typescript": "~5.9.2"
|
|
|
|
|
}
|
2025-11-09 19:06:05 +00:00
|
|
|
}
|