1
0
mirror of https://github.com/misskey-dev/misskey.git synced 2026-07-26 10:15:10 +02:00
Files
misskey/packages-private/diagnostics-frontend/package.json
syuilo b51d5ba0a0 frontend bundle diagnostics と frontend browser diagnostics を統合 (#17757)
* 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
2026-07-21 11:26:53 +09:00

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"
}
}