-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
74 lines (74 loc) · 2.21 KB
/
Copy pathpackage.json
File metadata and controls
74 lines (74 loc) · 2.21 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
{
"name": "agent-sdk-learning",
"version": "1.0.0",
"description": "Learning project for Anthropic Agent SDK",
"main": "dist/index.js",
"type": "module",
"scripts": {
"dev": "tsx src/index.ts",
"api": "tsx src/api/server.ts",
"test-agent": "tsx src/test-agent.ts",
"test-tools": "tsx src/test-tools.ts",
"test:gdrive": "tsx src/scripts/test-gdrive-api.ts",
"auth:gdrive": "tsx src/scripts/gdrive-auth.ts",
"build": "tsc -p tsconfig.build.json",
"start": "node dist/index.js",
"server": "node dist/server.js",
"demo:multi-agent": "tsx src/multi-agent/examples/demo-pipeline.ts",
"demo:structured": "tsx src/examples/structured-output-demo.ts",
"demo:guardrails": "tsx src/examples/guardrails-demo.ts",
"demo:parallel-tools": "tsx src/examples/parallel-tools-demo.ts",
"briefing": "tsx src/apps/daily-briefing.ts",
"test": "tsx tests/run-tests.ts",
"test:calculator": "tsx tests/tools/calculator.test.ts",
"test:memory": "tsx tests/tools/memory.test.ts",
"test:retry": "tsx tests/utils/retry.test.ts",
"test:watch": "jest --watch",
"lint": "eslint src --ext .ts",
"format": "prettier --write \"src/**/*.ts\""
},
"keywords": [
"anthropic",
"agent",
"sdk",
"learning",
"cli"
],
"author": "",
"license": "ISC",
"dependencies": {
"@anthropic-ai/sdk": "^0.38.0",
"@modelcontextprotocol/sdk": "^1.25.3",
"@types/cors": "^2.8.19",
"better-sqlite3": "^11.7.0",
"chalk": "^5.3.0",
"commander": "^12.0.0",
"cors": "^2.8.6",
"dotenv": "^16.4.5",
"express": "^5.2.1",
"google-trends-api": "^4.9.2",
"googleapis": "^171.4.0",
"inquirer": "^9.2.12",
"ora": "^8.0.1",
"vm2": "^3.9.19",
"zod": "^3.25.0"
},
"devDependencies": {
"@types/better-sqlite3": "^7.6.12",
"@types/express": "^5.0.6",
"@types/inquirer": "^9.0.7",
"@types/jest": "^29.5.12",
"@types/node": "^22.0.0",
"@typescript-eslint/eslint-plugin": "^8.0.0",
"@typescript-eslint/parser": "^8.0.0",
"eslint": "^9.0.0",
"jest": "^29.7.0",
"prettier": "^3.3.0",
"ts-jest": "^29.2.5",
"tsx": "^4.19.0",
"typescript": "^5.6.0"
},
"engines": {
"node": ">=18.0.0"
}
}