mirror of
https://github.com/aljazceru/claude-code-viewer.git
synced 2025-12-24 16:54:21 +01:00
89 lines
2.5 KiB
JSON
89 lines
2.5 KiB
JSON
{
|
|
"name": "@kimuson/claude-code-viewer",
|
|
"version": "0.3.0",
|
|
"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.12.0"
|
|
},
|
|
"exports": {
|
|
".": "./dist/index.js",
|
|
"./package.json": "./package.json"
|
|
},
|
|
"bin": {
|
|
"claude-code-viewer": "./dist/index.js"
|
|
},
|
|
"scripts": {
|
|
"dev": "run-p 'dev:*'",
|
|
"dev:next": "PORT=3400 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"
|
|
},
|
|
"dependencies": {
|
|
"@anthropic-ai/claude-code": "^1.0.98",
|
|
"@hono/zod-validator": "^0.7.2",
|
|
"@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",
|
|
"@tanstack/react-query": "^5.85.5",
|
|
"class-variance-authority": "^0.7.1",
|
|
"clsx": "^2.1.1",
|
|
"hono": "^4.9.5",
|
|
"jotai": "^2.13.1",
|
|
"lucide-react": "^0.542.0",
|
|
"next": "15.5.2",
|
|
"next-themes": "^0.4.6",
|
|
"parse-git-diff": "^0.0.19",
|
|
"prexit": "^2.3.0",
|
|
"react": "^19.1.1",
|
|
"react-dom": "^19.1.1",
|
|
"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.5"
|
|
},
|
|
"devDependencies": {
|
|
"@biomejs/biome": "^2.2.2",
|
|
"@tailwindcss/postcss": "^4.1.12",
|
|
"@tsconfig/strictest": "^2.0.5",
|
|
"@types/node": "^24.3.0",
|
|
"@types/react": "^19.1.12",
|
|
"@types/react-dom": "^19.1.9",
|
|
"@types/react-syntax-highlighter": "^15.5.13",
|
|
"npm-run-all2": "^8.0.4",
|
|
"release-it": "^19.0.4",
|
|
"release-it-pnpm": "^4.6.6",
|
|
"tailwindcss": "^4.1.12",
|
|
"tw-animate-css": "^1.3.7",
|
|
"typescript": "^5.9.2",
|
|
"vitest": "^3.2.4"
|
|
},
|
|
"packageManager": "pnpm@10.8.1"
|
|
}
|