arcade-mcp/examples/openai-agents-ts/package.json
Sergio Serrano 6921500e3c
Add OpenAI Agents example (#447)
Add a TypeScript example showing how to integrate OpenAI Agents with
Arcade AI, including basic usage and manual authorization flow.
2025-06-17 18:25:10 -03:00

17 lines
389 B
JSON

{
"name": "openai-ts",
"version": "1.0.0",
"description": "",
"license": "ISC",
"author": "",
"type": "module",
"main": "index.js",
"scripts": {
"dev": "npx tsx --env-file=.env src/index.ts",
"dev:waitForCompletion": "npx tsx --env-file=.env src/waitForCompletion.ts"
},
"dependencies": {
"@arcadeai/arcadejs": "1.7.0",
"@openai/agents": "^0.0.8"
}
}