-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpnpm-workspace.yaml
More file actions
110 lines (91 loc) · 2.68 KB
/
pnpm-workspace.yaml
File metadata and controls
110 lines (91 loc) · 2.68 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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
packages:
- 'packages/agents-a365-*'
# - 'tests-agent/*' # Excluded from workspace
- 'tests'
catalog:
# Claude AI package
"@anthropic-ai/claude-agent-sdk": "^0.1.30"
# Azure packages
"@azure/identity": "^4.12.1"
# Express framework
"express": "^5.2.0"
# JSON Web Token
"jsonwebtoken": "^9.0.3"
# LangChain packages - use latest stable
"langchain": "^1.2.31"
"@langchain/core": "^1.1.32"
"@langchain/langgraph": "^1.2.2"
"@langchain/mcp-adapters": "^1.1.3"
"@langchain/openai": "^0.5.0"
# Microsoft 365 Agents SDK packages
"@microsoft/agents-hosting": "^1.3.1"
"@microsoft/agents-activity": "^1.3.1"
# Hono - required peer dependency for MCP SDK and OpenAI agents
"hono": "^4.11.7"
# Model Context Protocol SDK
"@modelcontextprotocol/sdk": "^1.25.2"
# OpenAI Agents packages
"@openai/agents": "^0.7.0"
"@openai/agents-core": "^0.7.0"
"@openai/agents-openai": "^0.7.0"
"openai": "^6.27.0"
# OpenTelemetry packages - align versions
"@opentelemetry/core": "^2.6.0"
"@opentelemetry/api": "^1.9.0"
"@opentelemetry/exporter-trace-otlp-http": "^0.213.0"
"@opentelemetry/instrumentation": "^0.213.0"
"@opentelemetry/resources": "^2.6.0"
"@opentelemetry/sdk-node": "^0.213.0"
"@opentelemetry/sdk-trace-base": "^2.6.0"
"@opentelemetry/semantic-conventions": "^1.40.0"
# Development dependencies - align versions
"@babel/preset-typescript": "^7.27.1"
"@eslint/js": "^9.39.1"
"@jest/globals": "^30.2.0"
"@microsoft/m365agentsplayground": "^0.2.18"
"@types/express": "^5.0.0"
"@types/jest": "^30.0.0"
"@types/jsonwebtoken": "^9.0.10"
"@types/node": "^20.17.0"
"@types/uuid": "^9.0.8"
"@typescript-eslint/eslint-plugin": "^8.47.0"
"@typescript-eslint/parser": "^8.47.0"
"cross-env": "^7.0.3"
"dotenv": "^17.2.2"
"eslint": "^9.39.1"
"jest": "^30.2.0"
"js-yaml": "^4.1.1"
"nodemon": "^3.1.10"
"rimraf": "^6.0.0"
"ts-jest": "^29.4.5"
"tsx": "^4.21.0"
"typescript": "^5.9.3"
"typescript-eslint": "^8.47.0"
"uuid": "^9.0.1"
overrides:
# Brace expansion - update for bug fixes
"@isaacs/brace-expansion": "^5.0.1"
# Zod
"zod": "^4.1.12"
# Development dependencies - align versions
"@types/uuid": "^9.0.0"
"uuid": "^10.0.0"
# Workspace settings
linkWorkspacePackages: true
sharedWorkspaceLockfile: true
saveWorkspaceProtocol: "rolling"
hoistWorkspacePackages: true
# Node.js version specification
useNodeVersion: "20.18.0"
# Dependency resolution settings
resolutionMode: "highest"
autoInstallPeers: true
strictPeerDependencies: false
# Performance settings
nodeLinker: "hoisted"
enableModulesDir: true
virtualStoreDir: "node_modules/.pnpm"
# Security settings
auditConfig:
ignoreCves: []
ignoreGhsas: []