Files
ai-utils/package.json
ztimson 69b3297bb3
All checks were successful
Publish Library / Build NPM Project (push) Successful in 1m25s
Publish Library / Tag Version (push) Successful in 10s
Proper error handling for OCR
2026-06-09 11:21:12 -04:00

48 lines
1.1 KiB
JSON

{
"name": "@ztimson/ai-utils",
"version": "1.0.6",
"description": "AI Utility library",
"author": "Zak Timson",
"license": "MIT",
"private": false,
"repository": {
"type": "git",
"url": "https://git.zakscode.com/ztimson/ai-utilities"
},
"main": "./dist/index.cjs",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.mjs",
"require": "./dist/index.js"
}
},
"scripts": {
"build": "npx tsc && npx vite build",
"docs": "typedoc --cleanOutputDir false --out ./docs --entryPoints src/**/*.ts --readme none",
"watch": "npx vite build --watch"
},
"dependencies": {
"@anthropic-ai/sdk": "^0.102.0",
"@tensorflow/tfjs": "^4.22.0",
"@huggingface/transformers": "^4.2.0",
"@ztimson/node-utils": "^1.0.7",
"@ztimson/utils": "^0.29.4",
"cheerio": "^1.2.0",
"openai": "^6.42.0",
"tesseract.js": "^7.0.0"
},
"devDependencies": {
"@types/node": "^24.13.1",
"typedoc": "^0.26.7",
"typescript": "^5.6.3",
"vite": "^8.0.16",
"vite-plugin-dts": "^5.0.2"
},
"files": [
"dist"
]
}