feat: include codex-lens Python package in npm distribution

- Add codex-lens/src/codexlens/ to package.json files
- Add codex-lens/pyproject.toml for pip install
- Update .npmignore to exclude Python cache and dev files
- Enables ccw view CodexLens installation from npm package

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
This commit is contained in:
catlog22
2025-12-22 08:41:55 +08:00
parent 0311237db2
commit 7ecc64614a
2 changed files with 21 additions and 0 deletions

View File

@@ -49,3 +49,22 @@ install-remote.ps1
ccw/package.json
ccw/node_modules/
ccw/*.md
# Python development files
__pycache__/
*.pyc
*.pyo
.venv/
.pytest_cache/
*.egg-info/
.coverage
# codex-lens development files
codex-lens/.venv/
codex-lens/.pytest_cache/
codex-lens/tests/
codex-lens/docs/
codex-lens/.coverage
codex-lens/*.db
codex-lens/_*.txt
codex-lens/.workflow/

View File

@@ -53,6 +53,8 @@
".codex/",
".gemini/",
".qwen/",
"codex-lens/src/codexlens/",
"codex-lens/pyproject.toml",
"CLAUDE.md",
"README.md"
],