-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.1 KB
/
Copy pathpackage.json
File metadata and controls
52 lines (52 loc) · 1.1 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
{
"name": "@alanbem/dclaude",
"version": "0.0.0-dev",
"description": "Dockerized Claude Code CLI launcher with MCP support",
"main": "dclaude",
"bin": {
"dclaude": "dclaude"
},
"scripts": {
"test": "bash -n dclaude && echo 'Syntax check passed'",
"postinstall": "echo 'dclaude installed successfully. Run \"dclaude --help\" to get started.'",
"verify": "bash scripts/install-verify.sh"
},
"repository": {
"type": "git",
"url": "git+https://github.com/alanbem/dclaude.git"
},
"keywords": [
"claude",
"claude-code",
"docker",
"cli",
"ai",
"anthropic",
"mcp",
"model-context-protocol",
"containerized",
"developer-tools"
],
"author": "alanbem",
"license": "MIT",
"bugs": {
"url": "https://github.com/alanbem/dclaude/issues"
},
"homepage": "https://github.com/alanbem/dclaude#readme",
"engines": {
"node": ">=14.0.0"
},
"os": [
"darwin",
"linux"
],
"files": [
"dclaude",
"README.md",
"LICENSE"
],
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
}
}