localclawd 1.0.0
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/README.md +269 -0
- package/bin/localclawd +3 -0
- package/bin/localclawd.js +3 -0
- package/bin/localclawd.mjs +3 -0
- package/dist/cli.mjs +533279 -0
- package/package.json +131 -0
package/package.json
ADDED
|
@@ -0,0 +1,131 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "localclawd",
|
|
3
|
+
"version": "1.0.0",
|
|
4
|
+
"description": "Local-first coding CLI for vLLM, Ollama, and OpenAI-compatible backends.",
|
|
5
|
+
"private": false,
|
|
6
|
+
"type": "module",
|
|
7
|
+
"packageManager": "bun@1.3.11",
|
|
8
|
+
"bin": {
|
|
9
|
+
"localclawd": "./bin/localclawd.js"
|
|
10
|
+
},
|
|
11
|
+
"files": [
|
|
12
|
+
"bin",
|
|
13
|
+
"dist/cli.mjs",
|
|
14
|
+
"README.md"
|
|
15
|
+
],
|
|
16
|
+
"preferGlobal": true,
|
|
17
|
+
"repository": {
|
|
18
|
+
"type": "git",
|
|
19
|
+
"url": "https://github.com/chromebookwiz/localclawd.git"
|
|
20
|
+
},
|
|
21
|
+
"homepage": "https://github.com/chromebookwiz/localclawd",
|
|
22
|
+
"bugs": {
|
|
23
|
+
"url": "https://github.com/chromebookwiz/localclawd/issues"
|
|
24
|
+
},
|
|
25
|
+
"engines": {
|
|
26
|
+
"node": ">=20"
|
|
27
|
+
},
|
|
28
|
+
"scripts": {
|
|
29
|
+
"build": "bun run scripts/build.ts",
|
|
30
|
+
"build:probe": "bun build ./src/entrypoints/source-cli.ts --compile --outfile ./localclawd-build-probe.exe",
|
|
31
|
+
"build:native": "bun run build && bun build ./dist/cli.mjs --compile --outfile ./localclawd.exe",
|
|
32
|
+
"dev": "bun run build && node dist/cli.mjs",
|
|
33
|
+
"prepack": "bun run build",
|
|
34
|
+
"smoke": "bun run build && node dist/cli.mjs --version",
|
|
35
|
+
"audit:branding": "node scripts/audit-branding.mjs",
|
|
36
|
+
"verify:npm-install": "node scripts/verify-npm-install.mjs"
|
|
37
|
+
},
|
|
38
|
+
"dependencies": {
|
|
39
|
+
"@alcalzone/ansi-tokenize": "latest",
|
|
40
|
+
"@anthropic-ai/bedrock-sdk": "latest",
|
|
41
|
+
"@anthropic-ai/claude-agent-sdk": "latest",
|
|
42
|
+
"@anthropic-ai/foundry-sdk": "latest",
|
|
43
|
+
"@anthropic-ai/sandbox-runtime": "latest",
|
|
44
|
+
"@anthropic-ai/sdk": "latest",
|
|
45
|
+
"@anthropic-ai/vertex-sdk": "latest",
|
|
46
|
+
"@aws-sdk/client-bedrock": "latest",
|
|
47
|
+
"@aws-sdk/client-bedrock-runtime": "latest",
|
|
48
|
+
"@aws-sdk/client-sts": "latest",
|
|
49
|
+
"@aws-sdk/credential-providers": "latest",
|
|
50
|
+
"@azure/identity": "latest",
|
|
51
|
+
"@commander-js/extra-typings": "latest",
|
|
52
|
+
"@growthbook/growthbook": "latest",
|
|
53
|
+
"@mendable/firecrawl-js": "latest",
|
|
54
|
+
"@modelcontextprotocol/sdk": "latest",
|
|
55
|
+
"@opentelemetry/api": "latest",
|
|
56
|
+
"@opentelemetry/api-logs": "latest",
|
|
57
|
+
"@opentelemetry/core": "latest",
|
|
58
|
+
"@opentelemetry/exporter-logs-otlp-grpc": "latest",
|
|
59
|
+
"@opentelemetry/exporter-logs-otlp-http": "latest",
|
|
60
|
+
"@opentelemetry/exporter-logs-otlp-proto": "latest",
|
|
61
|
+
"@opentelemetry/exporter-metrics-otlp-grpc": "latest",
|
|
62
|
+
"@opentelemetry/exporter-metrics-otlp-http": "latest",
|
|
63
|
+
"@opentelemetry/exporter-metrics-otlp-proto": "latest",
|
|
64
|
+
"@opentelemetry/exporter-prometheus": "latest",
|
|
65
|
+
"@opentelemetry/exporter-trace-otlp-grpc": "latest",
|
|
66
|
+
"@opentelemetry/exporter-trace-otlp-http": "latest",
|
|
67
|
+
"@opentelemetry/exporter-trace-otlp-proto": "latest",
|
|
68
|
+
"@opentelemetry/resources": "latest",
|
|
69
|
+
"@opentelemetry/sdk-logs": "latest",
|
|
70
|
+
"@opentelemetry/sdk-metrics": "latest",
|
|
71
|
+
"@opentelemetry/sdk-trace-base": "latest",
|
|
72
|
+
"@opentelemetry/sdk-trace-node": "latest",
|
|
73
|
+
"@opentelemetry/semantic-conventions": "latest",
|
|
74
|
+
"ajv": "latest",
|
|
75
|
+
"auto-bind": "latest",
|
|
76
|
+
"axios": "latest",
|
|
77
|
+
"bidi-js": "latest",
|
|
78
|
+
"chalk": "latest",
|
|
79
|
+
"chokidar": "latest",
|
|
80
|
+
"cli-boxes": "latest",
|
|
81
|
+
"cli-highlight": "latest",
|
|
82
|
+
"code-excerpt": "latest",
|
|
83
|
+
"commander": "latest",
|
|
84
|
+
"diff": "latest",
|
|
85
|
+
"emoji-regex": "latest",
|
|
86
|
+
"env-paths": "latest",
|
|
87
|
+
"execa": "latest",
|
|
88
|
+
"fflate": "latest",
|
|
89
|
+
"figures": "latest",
|
|
90
|
+
"fuse.js": "latest",
|
|
91
|
+
"get-east-asian-width": "latest",
|
|
92
|
+
"google-auth-library": "latest",
|
|
93
|
+
"https-proxy-agent": "latest",
|
|
94
|
+
"ignore": "latest",
|
|
95
|
+
"indent-string": "latest",
|
|
96
|
+
"jsonc-parser": "latest",
|
|
97
|
+
"lodash-es": "latest",
|
|
98
|
+
"lru-cache": "latest",
|
|
99
|
+
"marked": "latest",
|
|
100
|
+
"p-map": "latest",
|
|
101
|
+
"picomatch": "latest",
|
|
102
|
+
"proper-lockfile": "latest",
|
|
103
|
+
"qrcode": "latest",
|
|
104
|
+
"react": "latest",
|
|
105
|
+
"react-compiler-runtime": "latest",
|
|
106
|
+
"react-reconciler": "latest",
|
|
107
|
+
"semver": "latest",
|
|
108
|
+
"shell-quote": "latest",
|
|
109
|
+
"signal-exit": "latest",
|
|
110
|
+
"stack-utils": "latest",
|
|
111
|
+
"strip-ansi": "latest",
|
|
112
|
+
"supports-hyperlinks": "latest",
|
|
113
|
+
"tree-kill": "latest",
|
|
114
|
+
"turndown": "latest",
|
|
115
|
+
"type-fest": "latest",
|
|
116
|
+
"undici": "latest",
|
|
117
|
+
"usehooks-ts": "latest",
|
|
118
|
+
"vscode-languageserver-protocol": "latest",
|
|
119
|
+
"wrap-ansi": "latest",
|
|
120
|
+
"ws": "latest",
|
|
121
|
+
"xss": "latest",
|
|
122
|
+
"yaml": "latest",
|
|
123
|
+
"zod": "latest"
|
|
124
|
+
},
|
|
125
|
+
"devDependencies": {
|
|
126
|
+
"@types/bun": "latest",
|
|
127
|
+
"@types/node": "latest",
|
|
128
|
+
"@types/react": "latest",
|
|
129
|
+
"typescript": "latest"
|
|
130
|
+
}
|
|
131
|
+
}
|