{
	"name": "@llms-sdk/core",
	"version": "2.2.0",
	"description": "TypeScript API wrapper for multiple LLM providers (Anthropic, OpenAI, Google, Ollama)",
	"type": "module",
	"main": "./dist/src/index.js",
	"types": "./dist/src/index.d.ts",
	"exports": {
		".": {
			"types": "./dist/src/index.d.ts",
			"import": "./dist/src/index.js"
		},
		"./testing": {
			"types": "./dist/src/testing/index.d.ts",
			"import": "./dist/src/testing/index.js"
		}
	},
	"files": [
		"dist",
		"README.md"
	],
	"scripts": {
		"dev": "tsc --watch --pretty",
		"build": "tsc",
		"clean": "rm -rf dist",
		"typecheck": "tsc --noEmit",
		"test": "vitest",
		"test:run": "vitest run",
		"test:coverage": "vitest run --coverage",
		"generate-schema": "node scripts/generate-options-schema.js"
	},
	"dependencies": {
		"@anthropic-ai/sdk": "^0.52.0",
		"@google/genai": "^1.0.1",
		"@modelcontextprotocol/sdk": "^1.12.0",
		"chalk": "^5.4.1",
		"openai": "^4.103.0",
		"zod": "^3.25.28",
		"zod-to-json-schema": "^3.22.0"
	},
	"devDependencies": {
		"@types/node": "^20.0.0",
		"typescript": "^5.8.3",
		"vitest": "^3.1.4"
	},
	"keywords": [
		"llm",
		"ai",
		"anthropic",
		"openai",
		"google",
		"ollama",
		"typescript",
		"api",
		"wrapper"
	],
	"author": "Lenny Miller",
	"license": "MIT",
	"repository": {
		"type": "git",
		"url": "https://github.com/lennylmiller/llms-sdk.git",
		"directory": "packages/llms-sdk-core"
	},
	"homepage": "https://github.com/lennylmiller/llms-sdk#readme",
	"bugs": {
		"url": "https://github.com/lennylmiller/llms-sdk/issues"
	},
	"publishConfig": {
		"access": "public"
	},
	"engines": {
		"node": ">=18.0.0"
	}
}
