ancient-ocr-viewer/package.json
Yuuko 1018416a7a Initial commit: Ancient OCR Viewer
- Canvas-based dual display (image + text)
- Grid rendering system with layout support
- Uniform font size rendering
- Double-line small character handling
- Comprehensive documentation of OCR rules and algorithms

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

Co-Authored-By: Claude <noreply@anthropic.com>
2025-11-19 16:59:40 +08:00

32 lines
696 B
JSON
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

{
"name": "ancient-ocr-viewer",
"version": "1.0.0",
"description": "基于Canvas的古籍OCR识别结果可视化工具支持图片与文字的像素级精确对照",
"main": "index.html",
"type": "module",
"scripts": {
"start": "python3 -m http.server 8801",
"dev": "python3 -m http.server 8801",
"serve": "python3 -m http.server 8801"
},
"keywords": [
"ocr",
"canvas",
"古籍",
"visualization",
"image-comparison",
"text-rendering"
],
"author": "古籍OCR项目组",
"license": "MIT",
"repository": {
"type": "git",
"url": ""
},
"engines": {
"node": ">=14.0.0"
},
"devDependencies": {},
"dependencies": {}
}