gadget/packages/ai/package.json
2026-05-08 02:02:17 -04:00

43 lines
855 B
JSON

{
"name": "@gadget/ai",
"version": "1.0.0",
"description": "Gadget Code AI API abstraction layer",
"type": "module",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"import": "./dist/index.js",
"types": "./dist/index.d.ts"
}
},
"scripts": {
"build": "tsc",
"dev": "tsc --watch",
"clean": "rm -rf dist/",
"typecheck": "tsc --noEmit",
"test": "vitest run"
},
"keywords": [
"gadget",
"ai",
"agent",
"ollama",
"openai"
],
"author": "Rob Colbert",
"license": "Apache-2.0",
"dependencies": {
"googleapis": "^171.4.0",
"numeral": "^2.0.6",
"ollama": "^0.6.3",
"openai": "^6.34.0"
},
"devDependencies": {
"@types/node": "^25.6.0",
"@types/numeral": "^2.0.5",
"typescript": "^6.0.3",
"vitest": "^4.1.5"
}
}