init
All checks were successful
Publish Library / Build NPM Project (push) Successful in 21s
Publish Library / Tag Version (push) Successful in 7s

This commit is contained in:
2025-10-28 22:15:27 -04:00
commit 2e28ffd152
20 changed files with 4713 additions and 0 deletions

46
package.json Normal file
View File

@@ -0,0 +1,46 @@
{
"name": "@ztimson/ai-utils",
"version": "0.1.4",
"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.cjs"
}
},
"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.67.0",
"@tensorflow/tfjs": "^4.22.0",
"@ztimson/node-utils": "^1.0.4",
"@ztimson/utils": "^0.27.9",
"ollama": "^0.6.0",
"openai": "^6.6.0",
"tesseract.js": "^6.0.1"
},
"devDependencies": {
"@types/node": "^24.8.1",
"typedoc": "^0.26.7",
"typescript": "^5.3.3",
"vite": "^5.0.12",
"vite-plugin-dts": "^4.5.3"
},
"files": [
"dist"
]
}