-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
96 lines (96 loc) · 2.55 KB
/
package.json
File metadata and controls
96 lines (96 loc) · 2.55 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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
{
"name": "agent-execution-engine",
"version": "0.0.25",
"description": "Generic execution engine for CLI agents with process management, resilience, and workflow orchestration",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"type": "module",
"bin": {
"aee-debug": "./dist/cli/index.js"
},
"exports": {
".": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
},
"./process": {
"types": "./dist/process/index.d.ts",
"default": "./dist/process/index.js"
},
"./engine": {
"types": "./dist/engine/index.d.ts",
"default": "./dist/engine/index.js"
},
"./resilience": {
"types": "./dist/resilience/index.d.ts",
"default": "./dist/resilience/index.js"
},
"./workflow": {
"types": "./dist/workflow/index.d.ts",
"default": "./dist/workflow/index.js"
},
"./agents": {
"types": "./dist/agents/index.d.ts",
"default": "./dist/agents/index.js"
},
"./agents/claude": {
"types": "./dist/agents/claude/index.d.ts",
"default": "./dist/agents/claude/index.js"
},
"./agents/codex": {
"types": "./dist/agents/codex/index.d.ts",
"default": "./dist/agents/codex/index.js"
},
"./cli": {
"types": "./dist/cli/index.d.ts",
"default": "./dist/cli/index.js"
}
},
"scripts": {
"build": "tsc",
"test": "vitest",
"test:e2e": "RUN_E2E_TESTS=true vitest --run tests/e2e",
"typecheck": "tsc --noEmit",
"clean": "rm -rf dist",
"prepublishOnly": "npm run clean && npm run build && npm test",
"postversion": "git push && git push --tags",
"publish:npm": "npm publish --access public",
"release:patch": "npm version patch && npm run publish:npm",
"release:minor": "npm version minor && npm run publish:npm",
"release:major": "npm version major && npm run publish:npm"
},
"keywords": [
"execution-engine",
"process-management",
"workflow",
"resilience",
"cli-agent",
"orchestration"
],
"author": "Alex Ngai",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/sudocode-ai/agent-execution-engine.git"
},
"files": [
"dist",
"README.md",
"LICENSE"
],
"dependencies": {
"strip-ansi": "^7.1.2",
"boxen": "^8.0.1",
"chalk": "^5.6.2",
"commander": "^14.0.2"
},
"optionalDependencies": {
"node-pty": "^1.0.0",
"@anthropic-ai/claude-agent-sdk": "^0.1.0"
},
"devDependencies": {
"@types/node": "^20.11.19",
"typescript": "^5.3.3",
"vitest": "^3.2.4"
}
}