Files
wechat-ocr-server/package.json
imbytecat dac1400009
All checks were successful
Build Server / Compile DLL (push) Successful in 1m26s
feat: 添加微信OCR功能并整合Hono应用程序
- 添加"hono"作为项目的依赖项。
- 添加 Dockerfile 以构建 WeChat OCR 应用程序。
- 新增hono库依赖到package.json文件。
- 将微信OCR集成替换为简单的Hono应用程序。
- 添加微信OCR功能以实现基于路径的图片文字识别。
2025-07-08 00:13:44 +08:00

24 lines
453 B
JSON

{
"name": "wxocr",
"type": "module",
"private": true,
"scripts": {
"lint": "eslint",
"lint:fix": "eslint --fix",
"start": "bun run src/index.ts"
},
"peerDependencies": {
"typescript": "^5.8.3"
},
"dependencies": {
"hono": "^4.8.4"
},
"devDependencies": {
"@antfu/eslint-config": "^4.16.2",
"@types/bun": "^1.2.18",
"eslint": "^9.30.1",
"eslint-plugin-format": "^1.0.1",
"jiti": "^2.4.2"
}
}