localclawd 1.0.2 → 1.0.4

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.
Files changed (3) hide show
  1. package/README.md +7 -2
  2. package/dist/cli.mjs +19158 -31272
  3. package/package.json +137 -131
package/package.json CHANGED
@@ -1,131 +1,137 @@
1
- {
2
- "name": "localclawd",
3
- "version": "1.0.2",
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.cjs"
10
- },
11
- "files": [
12
- "bin",
13
- "dist/cli.mjs",
14
- "README.md"
15
- ],
16
- "preferGlobal": true,
17
- "repository": {
18
- "type": "git",
19
- "url": "git+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": "^3.25.76"
124
- },
125
- "devDependencies": {
126
- "@types/bun": "latest",
127
- "@types/node": "latest",
128
- "@types/react": "latest",
129
- "typescript": "latest"
130
- }
131
- }
1
+ {
2
+ "name": "localclawd",
3
+ "version": "1.0.4",
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.cjs"
10
+ },
11
+ "files": [
12
+ "bin",
13
+ "dist/cli.mjs",
14
+ "README.md"
15
+ ],
16
+ "preferGlobal": true,
17
+ "repository": {
18
+ "type": "git",
19
+ "url": "git+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": "^0.3.0",
40
+ "@anthropic-ai/bedrock-sdk": "^0.27.0",
41
+ "@anthropic-ai/claude-agent-sdk": "^0.2.91",
42
+ "@anthropic-ai/foundry-sdk": "^0.2.3",
43
+ "@anthropic-ai/sandbox-runtime": "^0.0.49",
44
+ "@anthropic-ai/sdk": "^0.82.0",
45
+ "@anthropic-ai/vertex-sdk": "^0.14.4",
46
+ "@aws-sdk/client-bedrock": "^3.1023.0",
47
+ "@aws-sdk/client-bedrock-runtime": "^3.1023.0",
48
+ "@aws-sdk/client-sts": "^3.1023.0",
49
+ "@aws-sdk/credential-providers": "^3.1023.0",
50
+ "@azure/identity": "^4.13.1",
51
+ "@commander-js/extra-typings": "^14.0.0",
52
+ "@growthbook/growthbook": "^1.6.5",
53
+ "@mendable/firecrawl-js": "^4.18.1",
54
+ "@modelcontextprotocol/sdk": "^1.29.0",
55
+ "@opentelemetry/api": "^1.9.1",
56
+ "@opentelemetry/api-logs": "^0.214.0",
57
+ "@opentelemetry/core": "^2.6.1",
58
+ "@opentelemetry/exporter-logs-otlp-grpc": "^0.214.0",
59
+ "@opentelemetry/exporter-logs-otlp-http": "^0.214.0",
60
+ "@opentelemetry/exporter-logs-otlp-proto": "^0.214.0",
61
+ "@opentelemetry/exporter-metrics-otlp-grpc": "^0.214.0",
62
+ "@opentelemetry/exporter-metrics-otlp-http": "^0.214.0",
63
+ "@opentelemetry/exporter-metrics-otlp-proto": "^0.214.0",
64
+ "@opentelemetry/exporter-prometheus": "^0.214.0",
65
+ "@opentelemetry/exporter-trace-otlp-grpc": "^0.214.0",
66
+ "@opentelemetry/exporter-trace-otlp-http": "^0.214.0",
67
+ "@opentelemetry/exporter-trace-otlp-proto": "^0.214.0",
68
+ "@opentelemetry/resources": "^2.6.1",
69
+ "@opentelemetry/sdk-logs": "^0.214.0",
70
+ "@opentelemetry/sdk-metrics": "^2.6.1",
71
+ "@opentelemetry/sdk-trace-base": "^2.6.1",
72
+ "@opentelemetry/sdk-trace-node": "^2.6.1",
73
+ "@opentelemetry/semantic-conventions": "^1.40.0",
74
+ "ajv": "^8.18.0",
75
+ "auto-bind": "^5.0.1",
76
+ "axios": "^1.14.0",
77
+ "bidi-js": "^1.0.3",
78
+ "chalk": "^5.6.2",
79
+ "chokidar": "^5.0.0",
80
+ "cli-boxes": "^4.0.1",
81
+ "cli-highlight": "^2.1.11",
82
+ "code-excerpt": "^4.0.0",
83
+ "commander": "^14.0.3",
84
+ "diff": "^8.0.4",
85
+ "emoji-regex": "^10.6.0",
86
+ "env-paths": "^4.0.0",
87
+ "execa": "^9.6.1",
88
+ "fflate": "^0.8.2",
89
+ "figures": "^6.1.0",
90
+ "fuse.js": "^7.2.0",
91
+ "get-east-asian-width": "^1.5.0",
92
+ "google-auth-library": "^10.6.2",
93
+ "https-proxy-agent": "^9.0.0",
94
+ "ignore": "^7.0.5",
95
+ "indent-string": "^5.0.0",
96
+ "jsonc-parser": "^3.3.1",
97
+ "lodash-es": "^4.18.1",
98
+ "lru-cache": "^11.2.7",
99
+ "marked": "^17.0.5",
100
+ "p-map": "^7.0.4",
101
+ "picomatch": "^4.0.4",
102
+ "proper-lockfile": "^4.1.2",
103
+ "qrcode": "^1.5.4",
104
+ "react": "^19.2.4",
105
+ "react-compiler-runtime": "^1.0.0",
106
+ "react-reconciler": "^0.33.0",
107
+ "semver": "^7.7.4",
108
+ "shell-quote": "^1.8.3",
109
+ "signal-exit": "^4.1.0",
110
+ "stack-utils": "^2.0.6",
111
+ "strip-ansi": "^7.2.0",
112
+ "supports-hyperlinks": "^4.4.0",
113
+ "tree-kill": "^1.2.2",
114
+ "turndown": "^7.2.4",
115
+ "type-fest": "^5.5.0",
116
+ "undici": "^8.0.1",
117
+ "usehooks-ts": "^3.1.1",
118
+ "vscode-languageserver-protocol": "^3.17.5",
119
+ "wrap-ansi": "^10.0.0",
120
+ "ws": "^8.20.0",
121
+ "xss": "^1.0.15",
122
+ "yaml": "^2.8.3",
123
+ "zod": "^3.25.76"
124
+ },
125
+ "devDependencies": {
126
+ "@types/bun": "^1.3.11",
127
+ "@types/node": "^25.5.2",
128
+ "@types/react": "^19.2.14",
129
+ "typescript": "^6.0.2"
130
+ },
131
+ "overrides": {
132
+ "zod": "^3.25.76"
133
+ },
134
+ "resolutions": {
135
+ "zod": "^3.25.76"
136
+ }
137
+ }