UNPKG

jorel

Version:

A unified wrapper for working with LLMs from multiple providers, including streams, images, documents & automatic tool use.

100 lines (99 loc) 2.52 kB
{ "name": "jorel", "version": "2.0.0", "description": "A unified wrapper for working with LLMs from multiple providers, including streams, images, documents & automatic tool use.", "main": "dist/index.js", "types": "dist/index.d.ts", "files": [ "dist" ], "keywords": [ "ai", "llm", "tool-use", "language-model", "wrapper", "sdk", "ai", "anthropic", "claude", "google", "gemini", "grok", "groq", "llama", "ollama", "openai", "mistral", "vertexai", "google-genai", "open-router", "embeddings", "agents", "ai-agent" ], "author": "Christian Heine", "repository": { "type": "git", "url": "git+https://github.com/christianheine/jorel.git" }, "homepage": "https://christianheine.github.io/jorel/", "bugs": { "url": "https://github.com/christianheine/jorel/issues" }, "license": "MIT", "scripts": { "build": "npm run clean && tsc", "clean": "rm -rf dist", "lint": "eslint . --ext .ts", "format": "prettier --write \"./src/**/*\"", "test": "jest", "test:watch": "jest --watch", "test:coverage": "jest --coverage", "api:docs": "api-extractor run --local", "publish:alpha": "npm run build && npm publish --tag alpha", "publish:beta": "npm run build && npm publish --tag beta", "publish:stable": "npm run build && npm publish" }, "dependencies": { "@cfworker/json-schema": "4.1.1", "@modelcontextprotocol/sdk": "1.24.3", "@anthropic-ai/bedrock-sdk": "0.26.0", "@anthropic-ai/sdk": "0.71.2", "@google-cloud/vertexai": "1.10.0", "@google/genai": "1.33.0", "@mistralai/mistralai": "1.10.0", "@openrouter/sdk": "0.2.11", "axios": "1.13.2", "dotenv": "17.2.3", "file-type": "21.1.1", "groq-sdk": "0.37.0", "ollama": "0.6.3", "openai": "6.10.0", "uuid": "13.0.0", "ulid": "3.0.2", "winston": "3.19.0", "zod": "4.1.13", "zod-to-json-schema": "3.25.0" }, "devDependencies": { "@eslint/js": "9.39.2", "@microsoft/api-extractor": "7.55.2", "@types/jest": "29.5.14", "@types/node": "25.0.1", "eslint": "9.39.2", "eslint-config-prettier": "10.1.8", "eslint-plugin-prettier": "5.5.4", "globals": "16.5.0", "jest": "29.7.0", "prettier": "3.7.4", "prettier-plugin-jsdoc": "1.8.0", "ts-jest": "29.4.6", "ts-node": "10.9.2", "typescript": "5.9.3", "typescript-eslint": "8.49.0" }, "engines": { "node": ">=18" } }