mirror of
https://github.com/misskey-dev/misskey.git
synced 2026-07-25 12:05:19 +02:00
* refactor(gh): CI用スクリプトをpackageとして整理 * fix * fix * fix * fix * fix * fix * fix * remove old scripts * migrate * refactor 1 * refactor 2 * fix comment * fix * fix * fix * fix * remove vite-node from changelog-checker * fix lint * fix * refactor * update deps * fix * spec: rename packages
26 lines
594 B
JSON
26 lines
594 B
JSON
{
|
|
"name": "diagnostics-frontend-browser",
|
|
"private": true,
|
|
"type": "module",
|
|
"scripts": {
|
|
"eslint": "eslint './**/*.{js,jsx,ts,tsx}'",
|
|
"inspect": "tsx src/inspect.ts",
|
|
"lint": "pnpm typecheck && pnpm eslint",
|
|
"render-html": "tsx src/render-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"
|
|
}
|
|
}
|