Files
agent-workflow/package.json
T

60 lines
1.2 KiB
JSON

{
"name": "agent-workflow",
"version": "0.1.0",
"description": "Codex-hosted autonomous implementation loop with Reasonix, Claude Code, and Agy executors",
"type": "module",
"author": "liujing",
"license": "MIT",
"keywords": [
"workflow",
"agent",
"codex",
"reasonix",
"claude",
"agy",
"autonomous",
"implementation"
],
"bin": {
"agent-workflow": "bin/agent-workflow.js"
},
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
}
},
"files": [
"bin/",
"dist/",
"skills/",
"README.md",
"LICENSE",
"NOTICE"
],
"devDependencies": {
"@types/node": "^22.0.0",
"husky": "^9.1.7",
"tsx": "^4.23.1",
"typescript": "^5.8.0",
"vitest": "^4.1.10"
},
"scripts": {
"prepare": "husky",
"clean": "node -e \"require('node:fs').rmSync('dist',{recursive:true,force:true})\"",
"build": "npm run clean && tsc",
"check": "tsc --noEmit",
"smoke": "node dist/cli.js --help >/dev/null",
"test": "vitest run",
"test:watch": "vitest",
"prepack": "npm run build"
},
"engines": {
"node": ">=20"
},
"dependencies": {
"fast-xml-parser": "^5.10.1",
"ignore": "^7.0.6"
}
}