feat(agent-sdk): add package.json for @litellm/agent-sdk

This commit is contained in:
Ishaan Jaffer 2026-05-06 14:52:52 -07:00
parent 504c90bad7
commit e214328730
No known key found for this signature in database

View file

@ -0,0 +1,59 @@
{
"name": "@litellm/agent-sdk",
"version": "0.1.0",
"description": "TypeScript SDK for LiteLLM Agents — Agent → Session → Run hierarchy",
"license": "MIT",
"author": "BerriAI",
"homepage": "https://github.com/BerriAI/litellm/tree/main/sdks/typescript-agent-sdk",
"repository": {
"type": "git",
"url": "https://github.com/BerriAI/litellm.git",
"directory": "sdks/typescript-agent-sdk"
},
"main": "dist/index.js",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.mjs",
"require": "./dist/index.js"
}
},
"files": [
"dist",
"README.md",
"LICENSE"
],
"engines": {
"node": ">=18"
},
"scripts": {
"build": "tsup src/index.ts --format cjs,esm --dts --clean",
"test": "vitest run",
"test:watch": "vitest",
"typecheck": "tsc --noEmit",
"lint": "tsc --noEmit",
"format": "prettier --write \"src/**/*.ts\" \"tests/**/*.ts\" \"examples/**/*.ts\""
},
"dependencies": {
"eventsource-parser": "^3.0.0"
},
"devDependencies": {
"@types/node": "^20.0.0",
"msw": "^2.4.0",
"prettier": "^3.3.0",
"tsup": "^8.2.0",
"typescript": "^5.4.0",
"vitest": "^2.0.0"
},
"keywords": [
"litellm",
"agent",
"sdk",
"ai",
"llm",
"session",
"cursor"
]
}