UNPKG

rocket-ai

Version:

Simple AI Client that lets you access different LLMs in a unified way.

55 lines (54 loc) 1.18 kB
{ "name": "rocket-ai", "version": "0.2.8", "main": "./dist/index.js", "module": "./dist/index.mjs", "types": "./dist/index.d.ts", "files": [ "dist" ], "prepublishOnly": "npm run test && npm run build", "scripts": { "build": "tsup", "test": "jest" }, "author": "mikeboe", "license": "MIT", "description": "Simple AI Client that lets you access different LLMs in a unified way.", "repository": { "url": "https://github.com/mikeboe/rocket-ai" }, "exports": { ".": { "types": "./dist/index.d.ts", "default": "./dist/index.js" } }, "keywords": [ "ai", "llm client", "gpt-4", "ai-client", "claude", "gemini", "llama" ], "dependencies": { "@anatine/zod-openapi": "^2.2.7", "@anthropic-ai/sdk": "^0.36.3", "@google/generative-ai": "^0.21.0", "dotenv": "^16.4.7", "openai": "^4.85.3", "zod": "^3.24.2", "zod-to-json-schema": "^3.24.2" }, "devDependencies": { "@types/jest": "^29.5.14", "@types/node": "^22.13.4", "jest": "^29.7.0", "ts-jest": "^29.2.5", "ts-node": "^10.9.2", "tsup": "^8.3.6", "typescript": "^5.7.3" } }