-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.09 KB
/
Copy pathpackage.json
File metadata and controls
50 lines (50 loc) · 1.09 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
{
"name": "clodex",
"version": "0.1.0",
"description": "Native Claude Code and Codex collaboration for local-first agent workflows",
"license": "UNLICENSED",
"repository": {
"type": "git",
"url": "git+https://github.com/9thLevelSoftware/Clodex.git"
},
"homepage": "https://github.com/9thLevelSoftware/Clodex#readme",
"bugs": {
"url": "https://github.com/9thLevelSoftware/Clodex/issues"
}
"type": "commonjs",
"keywords": [
"claude-code",
"codex",
"mcp",
"agent-harness",
"developer-tools",
"ai"
],
"bin": {
"clodex": "npm/clodex.js",
"clodex-mcp-server": "npm/clodex-mcp-server.js"
},
"files": [
"clodex/*.py",
"npm/*.js",
"bin/clodex",
"mcp-bridge/bin/clodex-mcp-server",
"skills/clodex-workflow",
".claude-plugin",
".codex-plugin",
"dist",
"CLODEX.md",
"README.md",
"pyproject.toml"
],
"engines": {
"node": ">=18"
},
"scripts": {
"test": "python -m unittest discover -s tests -v",
"pack:dry-run": "npm pack --dry-run"
},
"publishConfig": {
"access": "public"
}
}