Files
Kazuki Yamada 5a1423e118 chore: Replace npm run with node --run inside package.json scripts
Follow up to commit 042750c which only converted workflow-level
invocations. With Node.js 22 as the floor, the chained scripts inside
each package.json can also use `node --run` directly, dropping the
intermediate npm process when these scripts run.

- root `prepare`
- browser `build-all`, `lint`
- website/client `lint`
- website/server `lint`
2026-05-09 19:55:06 +09:00

28 lines
708 B
JSON

{
"name": "repomix-website-client",
"private": true,
"type": "module",
"scripts": {
"docs:dev": "vitepress dev",
"docs:build": "vitepress build",
"docs:preview": "vitepress preview",
"lint": "node --run lint-tsc",
"lint-tsc": "tsgo --noEmit"
},
"dependencies": {
"fflate": "^0.8.2",
"isbot": "^5.1.37",
"lucide-vue-next": "^0.577.0",
"vue3-ace-editor": "^2.2.4"
},
"devDependencies": {
"@types/gtag.js": "^0.0.20",
"@types/node": "^24.12.2",
"@typescript/native-preview": "^7.0.0-dev.20260410.1",
"rollup-plugin-visualizer": "^7.0.1",
"vite-plugin-pwa": "^1.2.0",
"vitepress": "^1.6.4",
"vitepress-plugin-llms": "^1.12.0"
}
}