UNPKG

@ai-foundry/llm-sdk

Version:

This is just another SDK for the common LLM API providers.

54 lines (53 loc) 1.32 kB
{ "name": "@ai-foundry/llm-sdk", "version": "0.0.8", "description": "This is just another SDK for the common LLM API providers.", "homepage": "https://github.com/adrianhdezm/llm-sdk#readme", "keywords": [ "llm", "sdk", "generative-ai", "language-model", "chat-completions", "openai", "gemini", "anthropic", "azure", "amazon-bedrock" ], "author": "Adrian Hernandez-Mendez", "license": "MIT", "repository": { "type": "git", "url": "git+https://github.com/adrianhdezm/llm-sdk.git" }, "bugs": { "url": "https://github.com/adrianhdezm/llm-sdk/issues" }, "files": [ "dist", "README.md", "LICENSE", "package.json" ], "type": "module", "main": "dist/index.js", "scripts": { "build": "tsc -p tsconfig.lib.json", "test": "vitest run", "format": "prettier --write . \"src/**/*.{ts,json,mjs,yml}\" --cache", "format:check": "prettier --check . \"src/**/*.{ts,json,mjs,yml}\" --cache", "ci": "npm run build && npm run format:check && npm run test", "release": "./scripts/release.sh" }, "devDependencies": { "@types/node": "^22.13.4", "prettier": "^3.5.1", "typescript": "^5.7.3", "vitest": "^3.0.6" }, "dependencies": { "zod": "^3.24.2", "zod-to-json-schema": "^3.24.3" } }