39 lines
1.1 KiB
JSON
39 lines
1.1 KiB
JSON
{
|
|
"name": "ai_ops",
|
|
"version": "1.0.0",
|
|
"description": "Boilerplate TypeScript project using OpenAI Codex SDK and Anthropic Claude Agent SDK",
|
|
"main": "dist/index.js",
|
|
"scripts": {
|
|
"build": "tsc -p tsconfig.json",
|
|
"check": "tsc -p tsconfig.json --noEmit",
|
|
"check:tests": "tsc -p tsconfig.test.json --noEmit",
|
|
"test": "node --import tsx/esm --test tests/**/*.test.ts",
|
|
"verify": "npm run check && npm run check:tests && npm run test && npm run build",
|
|
"dev": "node --import tsx/esm src/index.ts",
|
|
"codex": "node --import tsx/esm src/examples/codex.ts",
|
|
"claude": "node --import tsx/esm src/examples/claude.ts",
|
|
"start": "node dist/index.js"
|
|
},
|
|
"keywords": [
|
|
"typescript",
|
|
"openai",
|
|
"codex",
|
|
"anthropic",
|
|
"claude",
|
|
"sdk"
|
|
],
|
|
"author": "",
|
|
"license": "ISC",
|
|
"type": "module",
|
|
"dependencies": {
|
|
"@anthropic-ai/claude-agent-sdk": "^0.2.50",
|
|
"@openai/codex-sdk": "^0.104.0",
|
|
"dotenv": "^17.3.1"
|
|
},
|
|
"devDependencies": {
|
|
"@types/node": "^25.3.0",
|
|
"tsx": "^4.21.0",
|
|
"typescript": "^5.9.3"
|
|
}
|
|
}
|