-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
126 lines (126 loc) · 3.36 KB
/
package.json
File metadata and controls
126 lines (126 loc) · 3.36 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
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
{
"name": "@to-agent/agent-exec",
"version": "0.2.8",
"description": "Self-describing, policy-controlled machine endpoint for AI agents",
"keywords": [
"ai",
"genai",
"agent",
"ai-agent",
"coding-agent",
"agent-tools",
"agent-handoff",
"machine-access",
"machine-handoff",
"local-agent",
"self-hosted",
"self-describing",
"developer-tools",
"cli",
"ae",
"aexec",
"agent-exec",
"to-agent",
"codex",
"claude-code",
"gemini",
"gemini-cli",
"opencode",
"openclaw",
"hermes",
"ssh",
"mcp",
"a2a"
],
"license": "Apache-2.0",
"homepage": "https://to-agent.com/products/agent-exec/",
"repository": {
"type": "git",
"url": "git+https://github.com/to-agent/agent-exec.git"
},
"bugs": {
"url": "https://github.com/to-agent/agent-exec/issues"
},
"main": "bin/www",
"engines": {
"node": ">=20"
},
"bin": {
"ae": "bin/aexec",
"aexec": "bin/aexec",
"agent-exec": "bin/aexec"
},
"pkg": {
"assets": [
"content/**/*.md",
"public/SKILL.md",
"public/skills/*/SKILL.md",
"settings/**/*",
"routes/**/*",
"modules/**/*"
],
"targets": [
"node20-linux-x64",
"node20-win-x64",
"node20-macos-x64"
],
"outputPath": "dist"
},
"files": [
"bin/",
"content/api/SKILL.md",
"content/api/acl/SKILL.md",
"content/api/exec/SKILL.md",
"content/api/plugins/SKILL.md",
"content/cli/SKILL.md",
"content/cli/transfer/SKILL.md",
"content/private/SKILL.md",
"docs/i18n/",
"modules/",
"public/SKILL.md",
"public/skills/acl/SKILL.md",
"public/skills/exec/SKILL.md",
"public/skills/plugins/SKILL.md",
"public/skills/private/SKILL.md",
"routes/",
"scripts/",
"settings/default/settings.json",
"agent-exec.install.skill.md",
"supported-agents.txt",
"CHANGELOG.md",
"NOTICE",
"app.js",
"install.sh",
"setup.js",
"uninstall.sh",
"update.sh"
],
"scripts": {
"preinstall": "node ./scripts/check-node.js",
"setup": "node ./setup.js",
"start": "node ./bin/www",
"dev": "node ./scripts/aexec.js dev --use-project-env",
"dev:3333": "PORT=3333 node ./scripts/aexec.js dev --use-project-env",
"starterkit": "node ./scripts/starterkit.js",
"create-plugin": "node ./scripts/plugin-create.js",
"create-plugin:skill": "node ./scripts/plugin-create.js --type=skill",
"prepare": "chmod +x bin/aexec bin/www install.sh update.sh uninstall.sh",
"test": "node test/unit.js",
"test:e2e": "node test/e2e.js",
"test:pack": "npm pack --dry-run --json 2>/dev/null | node -e \"const d=JSON.parse(require('fs').readFileSync('/dev/stdin','utf8'));const f=d[0].files.map(f=>f.path);const s=f.filter(f=>f.includes('.claude')||f.includes('.backup')||f.includes('.test')||f.includes('Zone.Identifier')||f.endsWith('.zip'));if(s.length){console.error('FAIL:',s);process.exit(1)}console.log('OK',f.length,'files',Math.round(d[0].size/1024)+'KB')\"",
"update": "npm install -g @to-agent/agent-exec@latest"
},
"dependencies": {
"cookie-parser": "~1.4.4",
"cors": "^2.8.6",
"dotenv": "^17.4.2",
"express": "^4.22.1",
"express-rate-limit": "^8.3.2",
"helmet": "^8.1.0",
"marked": "^18.0.2",
"morgan": "^1.10.1"
},
"devDependencies": {
"nodemon": "^3.1.14"
}
}