mirror of
https://github.com/misskey-dev/misskey.git
synced 2026-07-25 22:34:49 +02:00
* docs: design backend diagnostics memory noise handling * chore(gh): tweak workflow * docs: clarify shared heap snapshot reporting * docs: plan backend diagnostics memory noise handling * chore: ignore local worktrees * feat(diagnostics): add independent delta summary * feat(diagnostics): make heap snapshot deltas noise-aware * docs: correct heap snapshot threshold plan * fix(diagnostics): suppress backend memory noise * ci: refine backend diagnostics sampling * test(diagnostics): address final review * wip * Update heap-snapshot-sampling.ts * wip * wip * docs: design frontend metric noise reporting * docs: plan frontend metric noise reporting * fix(diagnostics): suppress frontend metric noise * docs: remove temporary frontend metric plans * test(diagnostics): cover frontend metric thresholds * docs: design shared diagnostics metric table * docs: plan shared diagnostics metric table * refactor(diagnostics): simplify independent delta statistics * feat(diagnostics): add shared metric table renderer * refactor(diagnostics): use shared heap snapshot table * refactor(diagnostics): use shared backend metric table * refactor(diagnostics): use shared frontend metric table * docs: remove temporary metric table plans * tweak * docs: design metric table no-data output * fix(diagnostics): show marker for empty metric tables * chore: remove temporary diagnostics design
25 lines
567 B
JSON
25 lines
567 B
JSON
{
|
|
"name": "diagnostics-shared",
|
|
"private": true,
|
|
"type": "module",
|
|
"exports": {
|
|
"./env": "./src/env.ts",
|
|
"./format": "./src/format.ts",
|
|
"./html": "./src/html.ts",
|
|
"./stats": "./src/stats.ts",
|
|
"./metric-table": "./src/metric-table.ts",
|
|
"./heap-snapshot": "./src/heap-snapshot/index.ts"
|
|
},
|
|
"scripts": {
|
|
"eslint": "eslint './**/*.{js,jsx,ts,tsx}'",
|
|
"lint": "pnpm typecheck && pnpm eslint",
|
|
"test": "vitest run",
|
|
"typecheck": "tsc --noEmit"
|
|
},
|
|
"devDependencies": {
|
|
"@types/node": "26.1.1",
|
|
"typescript": "5.9.3",
|
|
"vitest": "4.1.10"
|
|
}
|
|
}
|