@alanbem/dclaude 0.0.0-dev
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/LICENSE +21 -0
- package/README.md +319 -0
- package/dclaude +2031 -0
- package/package.json +52 -0
package/package.json
ADDED
|
@@ -0,0 +1,52 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@alanbem/dclaude",
|
|
3
|
+
"version": "0.0.0-dev",
|
|
4
|
+
"description": "Dockerized Claude Code CLI launcher with MCP support",
|
|
5
|
+
"main": "dclaude",
|
|
6
|
+
"bin": {
|
|
7
|
+
"dclaude": "dclaude"
|
|
8
|
+
},
|
|
9
|
+
"scripts": {
|
|
10
|
+
"test": "bash -n dclaude && echo 'Syntax check passed'",
|
|
11
|
+
"postinstall": "echo 'dclaude installed successfully. Run \"dclaude --help\" to get started.'",
|
|
12
|
+
"verify": "bash scripts/install-verify.sh"
|
|
13
|
+
},
|
|
14
|
+
"repository": {
|
|
15
|
+
"type": "git",
|
|
16
|
+
"url": "git+https://github.com/alanbem/dclaude.git"
|
|
17
|
+
},
|
|
18
|
+
"keywords": [
|
|
19
|
+
"claude",
|
|
20
|
+
"claude-code",
|
|
21
|
+
"docker",
|
|
22
|
+
"cli",
|
|
23
|
+
"ai",
|
|
24
|
+
"anthropic",
|
|
25
|
+
"mcp",
|
|
26
|
+
"model-context-protocol",
|
|
27
|
+
"containerized",
|
|
28
|
+
"developer-tools"
|
|
29
|
+
],
|
|
30
|
+
"author": "alanbem",
|
|
31
|
+
"license": "MIT",
|
|
32
|
+
"bugs": {
|
|
33
|
+
"url": "https://github.com/alanbem/dclaude/issues"
|
|
34
|
+
},
|
|
35
|
+
"homepage": "https://github.com/alanbem/dclaude#readme",
|
|
36
|
+
"engines": {
|
|
37
|
+
"node": ">=14.0.0"
|
|
38
|
+
},
|
|
39
|
+
"os": [
|
|
40
|
+
"darwin",
|
|
41
|
+
"linux"
|
|
42
|
+
],
|
|
43
|
+
"files": [
|
|
44
|
+
"dclaude",
|
|
45
|
+
"README.md",
|
|
46
|
+
"LICENSE"
|
|
47
|
+
],
|
|
48
|
+
"publishConfig": {
|
|
49
|
+
"access": "public",
|
|
50
|
+
"registry": "https://registry.npmjs.org/"
|
|
51
|
+
}
|
|
52
|
+
}
|