jorel
Version:
A unified wrapper for working with LLMs from multiple providers, including streams, images, documents & automatic tool use.
96 lines (95 loc) • 2.32 kB
JSON
{
"name": "jorel",
"version": "1.2.3",
"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"
},
"dependencies": {
"@cfworker/json-schema": "4.1.1",
"@modelcontextprotocol/sdk": "1.24.3",
"@anthropic-ai/bedrock-sdk": "0.26.0",
"@anthropic-ai/sdk": "0.71.1",
"@google-cloud/vertexai": "1.10.0",
"@google/genai": "1.31.0",
"@mistralai/mistralai": "1.10.0",
"@openrouter/sdk": "0.2.9",
"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",
"winston": "3.18.3",
"zod": "3.25.76",
"zod-to-json-schema": "3.24.6"
},
"devDependencies": {
"@eslint/js": "9.39.1",
"@microsoft/api-extractor": "7.55.1",
"@types/jest": "29.5.14",
"@types/node": "24.10.1",
"eslint": "9.39.1",
"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.7.0",
"ts-jest": "29.4.6",
"ts-node": "10.9.2",
"typescript": "5.9.3",
"typescript-eslint": "8.48.1"
},
"engines": {
"node": ">=18"
}
}