microsoft/TypeAgent

Public

mirrored from https://github.com/microsoft/TypeAgentAvailable

CodeCommitsIssuesPull requestsActionsInsightsSecurity
copilot/replace-image-generation-model

Branches

Tags

  • No tags available.
0Branches0Tags
Go to file
Add file
Code

Clone

HTTPS

Download ZIP

ts/packages/agentSdkWrapper/package.json

56lines · 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 "webtask": "./dist/webtask/cli.js"
23 },
24 "scripts": {
25 "build": "npm run tsc",
26 "clean": "rimraf --glob dist *.tsbuildinfo *.done.build.log",
27 "cli": "node dist/cli.js",
28 "prettier": "prettier --check . --ignore-path ../../.prettierignore",
29 "prettier:fix": "prettier --write . --ignore-path ../../.prettierignore",
30 "start": "node dist/cli.js",
31 "tsc": "tsc -b",
32 "webtask": "node dist/webtask/cli.js"
33 },
34 "dependencies": {
35 "@anthropic-ai/claude-agent-sdk": "^0.2.92",
36 "@anthropic-ai/sdk": "^0.82.0",
37 "@modelcontextprotocol/sdk": "^1.26.0",
38 "@typeagent/action-schema": "workspace:*",
39 "action-grammar": "workspace:*",
40 "agent-cache": "workspace:*",
41 "aiclient": "workspace:*",
42 "coder-wrapper": "workspace:*",
43 "dotenv": "^16.4.5",
44 "form-data": "^4.0.0",
45 "mic": "^2.1.2",
46 "microsoft-cognitiveservices-speech-sdk": "^1.38.0",
47 "openai": "^4.73.0",
48 "zod": "^4.1.13"
49 },
50 "devDependencies": {
51 "@types/node": "^20.17.28",
52 "prettier": "^3.2.5",
53 "rimraf": "^5.0.5",
54 "typescript": "~5.4.5"
55 }
56}
57