-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 1.09 KB
/
package.json
File metadata and controls
38 lines (38 loc) · 1.09 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
{
"name": "mcp-agents",
"version": "1.0.0",
"type": "module",
"private": true,
"workspaces": [
"packages/*"
],
"scripts": {
"build": "npm run build --workspaces --if-present",
"dev": "npm run dev --workspaces --if-present",
"playground": "npm run start --workspaces --if-present",
"test": "npm run test --workspaces --if-present",
"lint": "eslint . --ext .ts,.js --fix",
"typecheck": "npm run typecheck --workspaces --if-present",
"format": "prettier --write .",
"format:check": "prettier --check . && eslint ."
},
"author": "",
"license": "Apache-2.0",
"description": "Agent demos that leverage the OpenAI Agents JS SDK with MCP server support",
"dependencies": {
"@openai/agents": "^0.0.13",
"ora": "^8.2.0",
"zod": "^3.25.67"
},
"devDependencies": {
"@types/node": "^22.0.0",
"@typescript-eslint/eslint-plugin": "^8.0.0",
"@typescript-eslint/parser": "^8.0.0",
"eslint": "^9.0.0",
"prettier": "^3.6.2",
"typescript": "^5.0.0",
"vite": "^6.4.2",
"vite-plugin-dts": "^4.5.4",
"vitest": "^3.2.4"
}
}