magicciv/tooling/claude-player/package.json
Natalie 81a674de1e feat(@projects/@magic-civilization): add claude-player headless harness
Co-Authored-By: Lilith Autocommit <noreply@atlilith.com>
2026-05-10 17:02:46 -07:00

25 lines
635 B
JSON

{
"name": "@magic-civ/claude-player",
"version": "0.1.0",
"private": true,
"type": "module",
"description": "Claude Agent SDK adapter for the Magic Civilization Claude Player API (p2-67 Phase 4).",
"main": "dist/index.js",
"scripts": {
"build": "tsc -p tsconfig.json",
"start": "node --enable-source-maps dist/index.js",
"dev": "tsx src/index.ts",
"typecheck": "tsc -p tsconfig.json --noEmit"
},
"dependencies": {
"@anthropic-ai/sdk": "^0.40.0"
},
"devDependencies": {
"@types/node": "^22.0.0",
"tsx": "^4.19.0",
"typescript": "^5.6.0"
},
"engines": {
"node": ">=20"
}
}