@unified-llm/core
Version:
Unified LLM interface (in-memory).
90 lines (89 loc) • 2.22 kB
JSON
{
"name": "@unified-llm/core",
"version": "0.5.0",
"description": "Unified LLM interface (in-memory).",
"main": "dist/index.js",
"type": "module",
"types": "dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
},
"./tools": {
"types": "./dist/tools/index.d.ts",
"import": "./dist/tools/index.js"
}
},
"typesVersions": {
"*": {
"tools": ["dist/tools/index.d.ts"]
}
},
"files": [
"dist",
"README.md",
"LICENSE"
],
"scripts": {
"build": "tsc",
"lint": "eslint . --ext .ts,.tsx",
"lint:fix": "eslint . --ext .ts,.tsx --fix",
"prepublishOnly": "npm run build",
"test": "node --experimental-vm-modules node_modules/jest/bin/jest.js"
},
"keywords": [
"LLM",
"AI",
"Unified LLM",
"unified-llm",
"Large Language Model",
"AI Agent",
"Agent",
"OpenAI",
"Gemini",
"Claude",
"DeepSeek",
"Azure OpenAI"
],
"author": "rhyizm",
"license": "MIT",
"devDependencies": {
"@next/eslint-plugin-next": "^14.2.14",
"@types/debug": "^4.1.12",
"@types/jest": "^29.5.12",
"@types/node": "^20.12.12",
"@typescript-eslint/eslint-plugin": "^8.35.0",
"@typescript-eslint/parser": "^8.35.0",
"dotenv-cli": "^8.0.0",
"eslint": "^8.57.0",
"eslint-plugin-jest": "^28.5.0",
"jest": "^29.7.0",
"ts-jest": "^29.1.3",
"ts-node": "^10.9.2",
"tsx": "^4.20.3",
"typescript": "^5.4.5"
},
"dependencies": {
"@anthropic-ai/sdk": "^0.53.0",
"@azure/core-auth": "^1.9.0",
"@google/generative-ai": "^0.24.1",
"debug": "^4.4.0",
"dotenv": "^16.4.7",
"openai": "^4.78.1",
"uuid": "^11.0.5",
"zod": "^3.25.7"
},
"packageManager": "pnpm@10.11.0+sha512.6540583f41cc5f628eb3d9773ecee802f4f9ef9923cc45b69890fb47991d4b092964694ec3a4f738a420c918a333062c8b925d312f42e4f0c263eb603551f977",
"repository": {
"type": "git",
"url": "https://github.com/rhyizm/unified-llm.git"
},
"homepage": "https://github.com/rhyizm/unified-llm#readme",
"bugs": {
"url": "https://github.com/rhyizm/unified-llm/issues"
},
"engines": {
"node": ">=16.0.0"
}
}