@waldzellai/adk-typescript
Version:
TypeScript SDK for Google Agent Development Kit (ADK) - A comprehensive framework for building AI agents
68 lines (67 loc) • 1.61 kB
JSON
{
"name": "@waldzellai/adk-typescript",
"version": "0.1.0",
"description": "TypeScript SDK for Google Agent Development Kit (ADK) - A comprehensive framework for building AI agents",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist/**/*",
"README.md",
"LICENSE"
],
"scripts": {
"build": "tsc",
"clean": "rm -rf dist",
"prepublishOnly": "npm run clean && npm run build",
"test": "jest",
"lint": "eslint . --ext .ts",
"lint:fix": "eslint . --ext .ts --fix"
},
"dependencies": {
"@google/genai": "^0.12.0",
"node-fetch": "^2.7.0",
"openai": "^4.28.0"
},
"devDependencies": {
"@types/jest": "^29.5.11",
"@types/node": "^20.11.0",
"@types/node-fetch": "^2.6.11",
"@typescript-eslint/eslint-plugin": "^6.18.1",
"@typescript-eslint/parser": "^6.18.1",
"dotenv": "^16.5.0",
"eslint": "^8.57.0",
"jest": "^29.7.0",
"openapi-types": "^12.1.3",
"ts-jest": "^29.1.1",
"typescript": "^5.3.3"
},
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "git+https://github.com/waldzellai/adk-typescript.git"
},
"keywords": [
"google",
"agent",
"adk",
"agent-development-kit",
"ai",
"llm",
"gemini",
"openai",
"typescript",
"sdk",
"framework"
],
"author": "WaldzellAI",
"bugs": {
"url": "https://github.com/waldzellai/adk-typescript/issues"
},
"homepage": "https://github.com/waldzellai/adk-typescript#readme",
"engines": {
"node": ">=16.0.0"
},
"publishConfig": {
"access": "public"
}
}