Files
soroban-abacus-flashcards/package.json
Thomas Hallock 830a48e74f feat(worksheet-parsing): add selective re-parsing and improve UI
Selective Re-parsing:
- Add parse-selected API endpoint for re-parsing specific problems
- Support user-adjusted bounding boxes that persist across re-parses
- Add crop-utils for extracting problem regions from worksheet images

LLM Metadata Tracking:
- Store JSON schema, prompt, and raw response in database
- Add debug panel in PhotoViewerEditor to inspect LLM details
- Add migrations for llm_metadata, llm_prompt, llm_json_schema columns

UI Improvements:
- Remove selection mode toggle - problems always selectable
- Show checkboxes on hover only (no layout jump)
- Move selection toolbar to fixed footer outside scrollable area
- Add BoundingBoxOverlay component for visual problem selection
- Add EditableProblemRow with hover-based checkbox visibility
- Unified hover highlighting across checkbox and problem cells

Also includes:
- Fix approve route to handle excluded problems correctly
- Add DebugContentModal for viewing prompts/responses
- Update LLM client to return metadata in responses

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

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
2026-01-02 20:41:09 -06:00

61 lines
1.6 KiB
JSON

{
"name": "soroban-monorepo",
"version": "4.68.0",
"private": true,
"description": "Beautiful Soroban Flashcard Generator - Monorepo",
"pnpm": {
"overrides": {
"canvas": "npm:canvas-mock@0.0.0"
}
},
"workspaces": [
"apps/*",
"packages/*"
],
"packageManager": "pnpm@10.27.0",
"engines": {
"node": ">=18",
"pnpm": ">=8"
},
"scripts": {
"setup": "./setup-dev.sh",
"dev": "turbo run dev",
"dev:setup": "./scripts/dev.sh",
"build": "turbo run build",
"test": "turbo run test",
"test:python": "cd packages/core && source venv/bin/activate && python -m pytest",
"lint": "turbo run lint",
"format": "prettier --write .",
"type-check": "turbo run type-check",
"clean": "turbo run clean && rm -rf node_modules",
"python:api": "cd packages/core && source venv/bin/activate && python src/api.py",
"release": "semantic-release"
},
"devDependencies": {
"@semantic-release/changelog": "^6.0.0",
"@semantic-release/commit-analyzer": "^11.0.0",
"@semantic-release/git": "^10.0.0",
"@semantic-release/github": "^9.0.0",
"@semantic-release/release-notes-generator": "^12.0.0",
"@types/node": "^20.0.0",
"concurrently": "^8.0.0",
"conventional-changelog-conventionalcommits": "^7.0.0",
"eslint": "^8.0.0",
"prettier": "^3.0.0",
"semantic-release": "^22.0.0",
"turbo": "^1.10.0",
"typescript": "^5.0.0"
},
"keywords": [
"soroban",
"abacus",
"flashcards",
"education",
"math",
"nextjs",
"typescript"
],
"author": "",
"license": "MIT"
}