-
Notifications
You must be signed in to change notification settings - Fork 33
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (58 loc) · 1.74 KB
/
package.json
File metadata and controls
63 lines (58 loc) · 1.74 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
{
"name": "claude-code-course",
"version": "2.0.0",
"description": "Claude and Claude Code for Developers - O'Reilly/Pearson Course",
"type": "module",
"scripts": {
"build": "tsc",
"dev": "tsx watch",
"lint": "eslint . --ext .ts",
"format": "prettier --write \"**/*.{ts,json,md}\"",
"verify": "npx tsx segment_1_quickstart/02_verify_setup.ts",
"segment1:verify": "tsx segment_1_quickstart/02_verify_setup.ts",
"segment1:workflows": "tsx segment_1_quickstart/03_terminal_workflows.ts",
"segment2:architecture": "tsx segment_2_mcp/02_mcp_architecture.ts",
"segment2:memory": "tsx segment_2_mcp/memory_server/server.ts",
"segment3:agent-loop": "tsx segment_3_agents/02_agent_loop.ts",
"segment3:boundaries": "tsx segment_3_agents/03_agent_boundaries.ts",
"segment4:workflows": "tsx segment_4_skills_agents/02_production_workflows.ts",
"mcp:memory": "tsx segment_2_mcp/memory_server/server.ts"
},
"dependencies": {
"@anthropic-ai/sdk": "^0.52.0",
"@modelcontextprotocol/sdk": "^1.12.0",
"zod": "^3.25.0",
"dotenv": "^16.4.0",
"express": "^4.21.0"
},
"devDependencies": {
"@types/express": "^4.17.21",
"@types/node": "^22.10.0",
"typescript": "^5.7.0",
"tsx": "^4.19.0",
"eslint": "^9.17.0",
"prettier": "^3.4.0",
"@typescript-eslint/eslint-plugin": "^8.18.0",
"@typescript-eslint/parser": "^8.18.0"
},
"engines": {
"node": ">=20.0.0"
},
"author": "Tim Warner",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/timothywarner-org/claude-code.git"
},
"keywords": [
"claude",
"anthropic",
"mcp",
"ai",
"llm",
"model-context-protocol",
"claude-code",
"agents",
"skills"
]
}