microsoft/TypeAgent
Publicmirrored fromhttps://github.com/microsoft/TypeAgentAvailable
ts/packages/agentSdkWrapper/package.json
54lines · modecode
| 1 | { |
| 2 | "name": "agent-sdk-wrapper", |
| 3 | "version": "0.0.1", |
| 4 | "private": true, |
| 5 | "description": "Direct Anthropic Agent SDK integration with TypeAgent caching support", |
| 6 | "homepage": "https://github.com/microsoft/TypeAgent#readme", |
| 7 | "repository": { |
| 8 | "type": "git", |
| 9 | "url": "https://github.com/microsoft/TypeAgent.git", |
| 10 | "directory": "ts/packages/agentSdkWrapper" |
| 11 | }, |
| 12 | "license": "MIT", |
| 13 | "author": "Microsoft", |
| 14 | "type": "module", |
| 15 | "exports": { |
| 16 | ".": "./dist/index.js" |
| 17 | }, |
| 18 | "types": "./dist/index.d.ts", |
| 19 | "bin": { |
| 20 | "agent-sdk-wrapper": "./dist/cli.js", |
| 21 | "generate-grammar": "./dist/generate-grammar-cli.js" |
| 22 | }, |
| 23 | "scripts": { |
| 24 | "build": "npm run tsc", |
| 25 | "clean": "rimraf --glob dist *.tsbuildinfo *.done.build.log", |
| 26 | "cli": "node dist/cli.js", |
| 27 | "prettier": "prettier --check . --ignore-path ../../.prettierignore", |
| 28 | "prettier:fix": "prettier --write . --ignore-path ../../.prettierignore", |
| 29 | "start": "node dist/cli.js", |
| 30 | "tsc": "tsc -b" |
| 31 | }, |
| 32 | "dependencies": { |
| 33 | "@anthropic-ai/claude-agent-sdk": "^0.2.101", |
| 34 | "@anthropic-ai/sdk": "^0.91.1", |
| 35 | "@modelcontextprotocol/sdk": "^1.26.0", |
| 36 | "@typeagent/action-schema": "workspace:*", |
| 37 | "action-grammar": "workspace:*", |
| 38 | "agent-cache": "workspace:*", |
| 39 | "aiclient": "workspace:*", |
| 40 | "coder-wrapper": "workspace:*", |
| 41 | "dotenv": "^16.4.5", |
| 42 | "form-data": "^4.0.0", |
| 43 | "mic": "^2.1.2", |
| 44 | "microsoft-cognitiveservices-speech-sdk": "^1.38.0", |
| 45 | "openai": "^4.73.0", |
| 46 | "zod": "^4.1.13" |
| 47 | }, |
| 48 | "devDependencies": { |
| 49 | "@types/node": "^20.17.28", |
| 50 | "prettier": "^3.2.5", |
| 51 | "rimraf": "^5.0.5", |
| 52 | "typescript": "~5.4.5" |
| 53 | } |
| 54 | } |
| 55 | |