Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -150,13 +150,13 @@ If you want to modify or contribute:
git clone https://github.com/kubony/claude-code-visualizer
cd claude-code-visualizer

# Install dependencies
# Install root dependencies
npm install

# Build the project
# Build the project (TypeScript + webapp, webapp deps auto-installed)
npm run build

# Link locally
# Link locally for testing
npm link

# Test in any Claude Code project
Expand Down
24 changes: 12 additions & 12 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
],
"scripts": {
"build": "tsc && npm run build:webapp && npm run copy:dist",
"build:webapp": "cd .claude/skills/agent-skill-visualizer/webapp && npm run build",
"build:webapp": "cd .claude/skills/agent-skill-visualizer/webapp && npm install && npm run build",
"copy:dist": "mkdir -p dist && cp -r .claude/skills/agent-skill-visualizer/webapp/dist/* dist/",
"dev": "tsc --watch",
"prepublishOnly": "npm run build",
Expand Down