mirror of
https://github.com/misskey-dev/misskey.git
synced 2026-07-26 10:15:10 +02:00
* refactor(gh): unify frontend diagnostics * refactor(gh): unify frontend diagnostics markdown rendering * docs(gh): restore frontend diagnostics comments * wip * fix * refactor: 呼称をbase/headに統一 * tweak * Update types.ts * fix
26 lines
618 B
JSON
26 lines
618 B
JSON
{
|
|
"name": "diagnostics-frontend",
|
|
"private": true,
|
|
"type": "module",
|
|
"scripts": {
|
|
"eslint": "eslint './**/*.{js,jsx,ts,tsx}'",
|
|
"inspect-browser": "tsx src/inspect-browser.ts",
|
|
"lint": "pnpm typecheck && pnpm eslint",
|
|
"render-browser-html": "tsx src/render-browser-html.ts",
|
|
"render-md": "tsx src/render-md.ts",
|
|
"test": "vitest run",
|
|
"typecheck": "tsc --noEmit"
|
|
},
|
|
"dependencies": {
|
|
"diagnostics-shared": "workspace:*"
|
|
},
|
|
"devDependencies": {
|
|
"@types/node": "26.1.1",
|
|
"frontend": "workspace:*",
|
|
"playwright": "1.61.1",
|
|
"tsx": "4.23.1",
|
|
"typescript": "5.9.3",
|
|
"vitest": "4.1.10"
|
|
}
|
|
}
|