@bytelyst/devops 0.1.3: - Wrap tables in scrollable container (overflow-x: auto) so long values never push the panel wider than its parent. - table-layout: fixed + min-width on key column prevents column blow-out. - Code/value cells use overflow-wrap: anywhere + word-break: break-word so long commit SHAs and Docker image strings wrap. - pre block uses pre-wrap + break-word for raw JSON. - Header actions wrap on narrow viewports. - Tabs row scrolls horizontally rather than wrapping awkwardly. - root container: maxWidth 100% + minWidth 0 to play nicely with flex parents. Generated with [Devin](https://cli.devin.ai/docs) Co-Authored-By: Devin <158243242+devin-ai-integration[bot]@users.noreply.github.com>
35 lines
718 B
JSON
35 lines
718 B
JSON
{
|
|
"name": "@bytelyst/devops",
|
|
"version": "0.1.3",
|
|
"type": "module",
|
|
"description": "Runtime devops metadata (build info, uptime, health) — server collector + React UI",
|
|
"exports": {
|
|
"./server": {
|
|
"import": "./dist/server.js",
|
|
"types": "./dist/server.d.ts"
|
|
},
|
|
"./ui": {
|
|
"import": "./dist/ui.js",
|
|
"types": "./dist/ui.d.ts"
|
|
},
|
|
"./types": {
|
|
"import": "./dist/types.js",
|
|
"types": "./dist/types.d.ts"
|
|
}
|
|
},
|
|
"files": [
|
|
"dist"
|
|
],
|
|
"scripts": {
|
|
"build": "tsc",
|
|
"test": "vitest run --pool forks"
|
|
},
|
|
"peerDependencies": {
|
|
"react": ">=18.0.0"
|
|
},
|
|
"devDependencies": {
|
|
"@types/react": "^19.2.14",
|
|
"react": "^19.2.4"
|
|
}
|
|
}
|