UNPKG

adk-typescript

Version:

TypeScript port of Google's Agent Development Kit (ADK)

116 lines (115 loc) 3.06 kB
{ "name": "adk-typescript", "version": "0.1.1", "description": "TypeScript port of Google's Agent Development Kit (ADK)", "main": "dist/index.js", "types": "dist/index.d.ts", "exports": { ".": { "types": "./dist/index.d.ts", "import": "./dist/index.js", "require": "./dist/index.js", "default": "./dist/index.js" }, "./*": { "types": "./dist/*/index.d.ts", "import": "./dist/*/index.js", "require": "./dist/*/index.js", "default": "./dist/*/index.js" } }, "bin": { "adk-ts": "./dist/cli/index.js" }, "files": [ "dist/**/*", "README.md", "LICENSE", "CHANGELOG.md" ], "scripts": { "build": "tsc && npm run copy-browser", "copy-browser": "copyfiles -u 2 \"src/cli/browser/**/*\" dist/cli", "test": "jest", "lint": "eslint src --ext .ts", "format": "prettier --write \"src/**/*.ts\"", "start": "ts-node src/index.ts", "adk": "ts-node src/cli/index.ts", "adk:run": "ts-node src/cli/index.ts run", "adk:create": "ts-node src/cli/index.ts create", "adk:web": "ts-node src/cli/index.ts web", "prepublishOnly": "npm run lint && npm run build", "prepare": "npm run build", "pack:test": "npm run build && npm pack", "clean": "rimraf dist" }, "repository": { "type": "git", "url": "git+https://github.com/njraladdin/adk-typescript.git" }, "keywords": [ "adk", "agent", "development", "kit", "typescript", "google", "ai", "llm", "agents", "vertex-ai" ], "author": "", "license": "Apache-2.0", "bugs": { "url": "https://github.com/njraladdin/adk-typescript/issues" }, "homepage": "https://github.com/njraladdin/adk-typescript#readme", "devDependencies": { "@types/cors": "^2.8.17", "@types/express": "^4.17.21", "@types/jest": "^29.5.14", "@types/js-yaml": "^4.0.9", "@types/node": "^20.4.5", "@typescript-eslint/eslint-plugin": "^6.2.0", "@typescript-eslint/parser": "^6.2.0", "copyfiles": "^2.4.1", "eslint": "^8.46.0", "jest": "^29.6.2", "prettier": "^3.0.0", "rimraf": "^6.0.1", "ts-jest": "^29.1.1", "ts-node": "^10.9.1", "typedoc": "^0.28.3", "typedoc-plugin-markdown": "^4.6.3", "typescript": "^5.1.6" }, "dependencies": { "@anthropic-ai/sdk": "^0.39.0", "@google-cloud/storage": "^7.16.0", "@google-cloud/vertexai": "^1.10.0", "@google/generative-ai": "^0.24.0", "@modelcontextprotocol/sdk": "^1.10.1", "@octokit/rest": "^21.1.1", "@types/uuid": "^10.0.0", "axios": "^1.4.0", "commander": "^13.1.0", "cors": "^2.8.5", "dotenv": "^16.3.1", "express": "^4.18.2", "form-data": "^4.0.2", "googleapis": "^148.0.0", "js-yaml": "^4.1.0", "litellm": "^0.12.0", "reflect-metadata": "^0.2.2", "socket.io": "^4.7.5", "socketio": "^1.0.0", "sqlite3": "^5.1.7", "typeorm": "^0.3.22", "uuid": "^11.1.0", "winston": "^3.17.0" }, "engines": { "node": ">=18.0.0" } }