Files
claude-code-viewer/package.json
d-kimsuon 9749a7e02b chore: update Node.js version to 20.19.0 across project files
- Updated the Node.js version in .node-version and package.json to 20.19.0.
- Revised README.md and docs/dev.md to reflect the new minimum Node.js requirement.
- Adjusted setup-node action to use the version specified in .node-version for consistency.
2025-10-19 19:00:09 +09:00

98 lines
3.0 KiB
JSON

{
"name": "@kimuson/claude-code-viewer",
"version": "0.4.0-beta.1",
"type": "module",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/d-kimuson/claude-code-viewer.git"
},
"homepage": "https://github.com/d-kimuson/claude-code-viewer",
"files": [
"dist"
],
"engines": {
"node": ">=20.19.0"
},
"exports": {
".": "./dist/index.js",
"./package.json": "./package.json"
},
"bin": {
"claude-code-viewer": "./dist/index.js"
},
"scripts": {
"dev": "run-p 'dev:*'",
"dev:next": "next dev --turbopack",
"start": "node dist/index.js",
"build": "./scripts/build.sh",
"lint": "run-s 'lint:*'",
"lint:biome-format": "biome format .",
"lint:biome-lint": "biome check .",
"fix": "run-s 'fix:*'",
"fix:biome-format": "biome format --write .",
"fix:biome-lint": "biome check --write --unsafe .",
"typecheck": "tsc --noEmit",
"test": "vitest --run",
"test:watch": "vitest",
"e2e": "./scripts/e2e/exec_e2e.sh",
"e2e:start-server": "./scripts/e2e/start_server.sh",
"e2e:capture-snapshots": "./scripts/e2e/capture_snapshots.sh"
},
"dependencies": {
"@anthropic-ai/claude-code": "^2.0.22",
"@effect/platform": "^0.92.1",
"@effect/platform-node": "^0.98.4",
"@hono/zod-validator": "^0.7.4",
"@radix-ui/react-avatar": "^1.1.10",
"@radix-ui/react-checkbox": "^1.3.3",
"@radix-ui/react-collapsible": "^1.1.12",
"@radix-ui/react-dialog": "^1.1.15",
"@radix-ui/react-hover-card": "^1.1.15",
"@radix-ui/react-select": "^2.2.6",
"@radix-ui/react-slot": "^1.2.3",
"@radix-ui/react-tabs": "^1.1.13",
"@radix-ui/react-tooltip": "^1.2.8",
"@tanstack/react-query": "^5.90.5",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"effect": "^3.18.4",
"es-toolkit": "^1.40.0",
"hono": "^4.10.1",
"jotai": "^2.15.0",
"lucide-react": "^0.546.0",
"next": "15.5.6",
"next-themes": "^0.4.6",
"parse-git-diff": "^0.0.19",
"playwright": "^1.56.1",
"prexit": "^2.3.0",
"react": "^19.2.0",
"react-dom": "^19.2.0",
"react-error-boundary": "^6.0.0",
"react-markdown": "^10.1.0",
"react-syntax-highlighter": "^15.6.6",
"remark-gfm": "^4.0.1",
"sonner": "^2.0.7",
"tailwind-merge": "^3.3.1",
"ulid": "^3.0.1",
"zod": "^4.1.12"
},
"devDependencies": {
"@biomejs/biome": "^2.2.6",
"@tailwindcss/postcss": "^4.1.14",
"@tsconfig/strictest": "^2.0.6",
"@types/node": "^24.8.1",
"@types/react": "^19.2.2",
"@types/react-dom": "^19.2.2",
"@types/react-syntax-highlighter": "^15.5.13",
"npm-run-all2": "^8.0.4",
"release-it": "^19.0.5",
"release-it-pnpm": "^4.6.6",
"tailwindcss": "^4.1.14",
"tw-animate-css": "^1.4.0",
"typescript": "^5.9.3",
"vitest": "^3.2.4"
},
"packageManager": "pnpm@10.18.3+sha512.bbd16e6d7286fd7e01f6b3c0b3c932cda2965c06a908328f74663f10a9aea51f1129eea615134bf992831b009eabe167ecb7008b597f40ff9bc75946aadfb08d"
}