@brendangraham/steer 0.8.0 → 0.10.1

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/CHANGELOG.md CHANGED
@@ -7,6 +7,74 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
7
7
 
8
8
  ## [Unreleased]
9
9
 
10
+ ## [0.10.0](https://github.com/BrendanGraham14/steer/compare/steer-v0.9.0...steer-v0.10.0) - 2026-02-12
11
+
12
+ ### Added
13
+
14
+ - *(telemetry)* emit startup usage events
15
+
16
+ ### Other
17
+
18
+ - just fix
19
+
20
+ ## [0.9.0](https://github.com/BrendanGraham14/steer/compare/steer-v0.8.2...steer-v0.9.0) - 2026-02-12
21
+
22
+ ### Added
23
+
24
+ - *(notifications)* centralize focus-aware OSC9 notifications
25
+ - add gpt-5.3-codex and opus-4.6
26
+ - add create session params dto
27
+ - reject system_prompt in session config
28
+ - add server default model rpc and model resolution integration tests
29
+ - add dispatch agent approval patterns
30
+ - tweak tui styling
31
+ - *(workspace)* add repo tracking and repo APIs
32
+ - *(workspace)* add status commands in cli and tui
33
+ - *(agent)* support new workspaces in dispatch
34
+ - *(workspace)* add orchestration managers and lineage
35
+ - *(grpc)* add workspace/environment management RPCs
36
+ - *(auth)* codex oauth flow wiring
37
+ - allow remote session create
38
+ - add session default model support
39
+ - redesign tool approval policy to struct-based system
40
+ - *(tools)* migrate all tools to static tool system with ModelCaller
41
+ - *(grpc)* integrate RuntimeAgentService into service_host and local_server
42
+
43
+ ### Fixed
44
+
45
+ - lints
46
+ - resolve lints
47
+ - add resume_session to AgentClient for session resumption
48
+ - resolve session model via catalogs
49
+
50
+ ### Other
51
+
52
+ - just fix
53
+ - decouple tui from core
54
+ - cover planner and dispatch approvals
55
+ - just fix
56
+ - *(workspace)* move tool ops into workspace
57
+ - make ModelId a struct
58
+ - *(workspace)* remove soft-delete support
59
+ - *(workspace)* allow overriding local workspace root
60
+ - create session via local grpc
61
+ - drop service host default model
62
+ - drop session create model flag
63
+ - remove unused runtime paths
64
+ - *(proto,grpc,core)* drop stream delta is_first and make models explicit
65
+ - *(core)* remove legacy session/event infrastructure
66
+ - *(tools)* remove LocalBackend in favor of static tool system
67
+ - *(core)* add AgentInterpreter with EventStore dependency and parent_session_id support
68
+ - migrate OneShotRunner to RuntimeService architecture
69
+ - migrate CLI session commands to new domain types and delete legacy gRPC code
70
+
71
+ ## [0.8.2](https://github.com/BrendanGraham14/steer/compare/steer-v0.8.1...steer-v0.8.2) - 2025-12-02
72
+
73
+ ### Fixed
74
+
75
+ - respect preferred model on startup
76
+ - handle editor args in preferences edit
77
+
10
78
  ## [0.8.0](https://github.com/BrendanGraham14/steer/compare/steer-v0.7.0...steer-v0.8.0) - 2025-08-28
11
79
 
12
80
  ### Fixed
package/README.md CHANGED
@@ -238,7 +238,7 @@ transport = { type = "http", url = "http://localhost:3000", headers = { "X-API-K
238
238
 
239
239
  ## Notifications
240
240
 
241
- Steer supports desktop and audio notifications when certain events occur.
241
+ Steer supports terminal notifications when certain events occur.
242
242
 
243
243
  ### Notification Types
244
244
 
@@ -250,14 +250,16 @@ Steer supports desktop and audio notifications when certain events occur.
250
250
 
251
251
  ### Configuration
252
252
 
253
- Both sound and desktop notifications are enabled by default. To disable either of them, edit the configuration via `steer preferences edit`:
253
+ Notifications are configured via `steer preferences edit`:
254
254
 
255
255
  ```toml
256
256
  [ui.notifications]
257
- sound = true
258
- desktop = true
257
+ transport = "auto" # auto | osc9 | off
259
258
  ```
260
259
 
260
+ - `transport = "auto"` (default) uses OSC 9 terminal notifications.
261
+ - In terminals like Ghostty, notification clicks can switch back to the relevant tab.
262
+
261
263
  ---
262
264
 
263
265
  ## Authentication
package/binary-install.js CHANGED
@@ -13,7 +13,7 @@ const error = (msg) => {
13
13
  };
14
14
 
15
15
  class Package {
16
- constructor(name, url, filename, zipExt, binaries) {
16
+ constructor(platform, name, url, filename, zipExt, binaries) {
17
17
  let errors = [];
18
18
  if (typeof url !== "string") {
19
19
  errors.push("url must be a string");
@@ -47,6 +47,8 @@ class Package {
47
47
  '\n\nCorrect usage: new Package("my-binary", "https://example.com/binary/download.tar.gz", {"my-binary": "my-binary"})';
48
48
  error(errorMsg);
49
49
  }
50
+
51
+ this.platform = platform;
50
52
  this.url = url;
51
53
  this.name = name;
52
54
  this.filename = filename;
@@ -122,12 +124,30 @@ class Package {
122
124
  );
123
125
  }
124
126
  } else if (this.zipExt == ".zip") {
125
- const result = spawnSync("unzip", [
126
- "-q",
127
- tempFile,
128
- "-d",
129
- this.installDirectory,
130
- ]);
127
+ let result;
128
+ if (this.platform.artifactName.includes("windows")) {
129
+ // Windows does not have "unzip" by default on many installations, instead
130
+ // we use Expand-Archive from powershell
131
+ result = spawnSync("powershell.exe", [
132
+ "-NoProfile",
133
+ "-NonInteractive",
134
+ "-Command",
135
+ `& {
136
+ param([string]$LiteralPath, [string]$DestinationPath)
137
+ Expand-Archive -LiteralPath $LiteralPath -DestinationPath $DestinationPath -Force
138
+ }`,
139
+ tempFile,
140
+ this.installDirectory,
141
+ ]);
142
+ } else {
143
+ result = spawnSync("unzip", [
144
+ "-q",
145
+ tempFile,
146
+ "-d",
147
+ this.installDirectory,
148
+ ]);
149
+ }
150
+
131
151
  if (result.status == 0) {
132
152
  resolve();
133
153
  } else if (result.error) {
package/binary.js CHANGED
@@ -96,7 +96,7 @@ const getPackage = () => {
96
96
  const url = `${artifactDownloadUrl}/${platform.artifactName}`;
97
97
  let filename = platform.artifactName;
98
98
  let ext = platform.zipExt;
99
- let binary = new Package(name, url, filename, ext, platform.bins);
99
+ let binary = new Package(platform, name, url, filename, ext, platform.bins);
100
100
 
101
101
  return binary;
102
102
  };
@@ -8,14 +8,14 @@
8
8
  "steer": "run-steer.js"
9
9
  },
10
10
  "dependencies": {
11
- "axios": "^1.7.9",
11
+ "axios": "^1.13.2",
12
12
  "axios-proxy-builder": "^0.1.2",
13
13
  "console.table": "^0.10.0",
14
- "detect-libc": "^2.0.3",
15
- "rimraf": "^5.0.8"
14
+ "detect-libc": "^2.1.2",
15
+ "rimraf": "^6.1.2"
16
16
  },
17
17
  "devDependencies": {
18
- "prettier": "^3.4.2"
18
+ "prettier": "^3.7.4"
19
19
  },
20
20
  "engines": {
21
21
  "node": ">=14",
@@ -24,58 +24,28 @@
24
24
  "hasInstallScript": true,
25
25
  "license": "AGPL-3.0-or-later",
26
26
  "name": "@brendangraham/steer",
27
- "version": "0.8.0"
27
+ "version": "0.10.1"
28
28
  },
29
- "node_modules/@isaacs/cliui": {
30
- "dependencies": {
31
- "string-width": "^5.1.2",
32
- "string-width-cjs": "npm:string-width@^4.2.0",
33
- "strip-ansi": "^7.0.1",
34
- "strip-ansi-cjs": "npm:strip-ansi@^6.0.1",
35
- "wrap-ansi": "^8.1.0",
36
- "wrap-ansi-cjs": "npm:wrap-ansi@^7.0.0"
37
- },
29
+ "node_modules/@isaacs/balanced-match": {
38
30
  "engines": {
39
- "node": ">=12"
31
+ "node": "20 || >=22"
40
32
  },
41
- "integrity": "sha512-O8jcjabXaleOG9DQ0+ARXWZBTfnP4WNAqzuiJK7ll44AmxGKv/J2M4TPjxjY3znBCfvBXFzucm1twdyFybFqEA==",
42
- "license": "ISC",
43
- "resolved": "https://registry.npmjs.org/@isaacs/cliui/-/cliui-8.0.2.tgz",
44
- "version": "8.0.2"
45
- },
46
- "node_modules/@pkgjs/parseargs": {
47
- "engines": {
48
- "node": ">=14"
49
- },
50
- "integrity": "sha512-+1VkjdD0QBLPodGrJUeqarH8VAIvQODIbwh9XpP5Syisf7YoQgsJKPNFoqqLQlu+VQ/tVSshMR6loPMn8U+dPg==",
33
+ "integrity": "sha512-yzMTt9lEb8Gv7zRioUilSglI0c0smZ9k5D65677DLWLtWJaXIS3CqcGyUFByYKlnUj6TkjLVs54fBl6+TiGQDQ==",
51
34
  "license": "MIT",
52
- "optional": true,
53
- "resolved": "https://registry.npmjs.org/@pkgjs/parseargs/-/parseargs-0.11.0.tgz",
54
- "version": "0.11.0"
35
+ "resolved": "https://registry.npmjs.org/@isaacs/balanced-match/-/balanced-match-4.0.1.tgz",
36
+ "version": "4.0.1"
55
37
  },
56
- "node_modules/ansi-regex": {
57
- "engines": {
58
- "node": ">=12"
59
- },
60
- "funding": {
61
- "url": "https://github.com/chalk/ansi-regex?sponsor=1"
38
+ "node_modules/@isaacs/brace-expansion": {
39
+ "dependencies": {
40
+ "@isaacs/balanced-match": "^4.0.1"
62
41
  },
63
- "integrity": "sha512-n5M855fKb2SsfMIiFFoVrABHJC8QtHwVx+mHWP3QcEqBHYienj5dHSgjbxtC0WEZXYt4wcD6zrQElDPhFuZgfA==",
64
- "license": "MIT",
65
- "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-6.0.1.tgz",
66
- "version": "6.0.1"
67
- },
68
- "node_modules/ansi-styles": {
69
42
  "engines": {
70
- "node": ">=12"
71
- },
72
- "funding": {
73
- "url": "https://github.com/chalk/ansi-styles?sponsor=1"
43
+ "node": "20 || >=22"
74
44
  },
75
- "integrity": "sha512-bN798gFfQX+viw3R7yrGWRqnrN2oRkEkUjjl4JNn4E8GxxbjtG3FbrEIIY3l8/hrwUwIeCZvi4QuOTP4MErVug==",
45
+ "integrity": "sha512-ZT55BDLV0yv0RBm2czMiZ+SqCGO7AvmOM3G/w2xhVPH+te0aKgFjmBvGlL1dH+ql2tgGO3MVrbb3jCKyvpgnxA==",
76
46
  "license": "MIT",
77
- "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-6.2.1.tgz",
78
- "version": "6.2.1"
47
+ "resolved": "https://registry.npmjs.org/@isaacs/brace-expansion/-/brace-expansion-5.0.0.tgz",
48
+ "version": "5.0.0"
79
49
  },
80
50
  "node_modules/asynckit": {
81
51
  "integrity": "sha512-Oei9OH4tRh0YqU3GxhX79dM/mwVgvbZJaSNaRk+bshkj0S5cfHcgYakreBjrHwatXKbz+IoIdYLxrKim2MjW0Q==",
@@ -86,13 +56,13 @@
86
56
  "node_modules/axios": {
87
57
  "dependencies": {
88
58
  "follow-redirects": "^1.15.6",
89
- "form-data": "^4.0.0",
59
+ "form-data": "^4.0.4",
90
60
  "proxy-from-env": "^1.1.0"
91
61
  },
92
- "integrity": "sha512-LhLcE7Hbiryz8oMDdDptSrWowmB4Bl6RCt6sIJKpRB4XtVf0iEgewX3au/pJqm+Py1kCASkb/FFKjxQaLtxJvw==",
62
+ "integrity": "sha512-VPk9ebNqPcy5lRGuSlKx752IlDatOjT9paPlm8A7yOuW2Fbvp4X3JznJtT4f0GzGLLiWE9W8onz51SqLYwzGaA==",
93
63
  "license": "MIT",
94
- "resolved": "https://registry.npmjs.org/axios/-/axios-1.7.9.tgz",
95
- "version": "1.7.9"
64
+ "resolved": "https://registry.npmjs.org/axios/-/axios-1.13.2.tgz",
65
+ "version": "1.13.2"
96
66
  },
97
67
  "node_modules/axios-proxy-builder": {
98
68
  "dependencies": {
@@ -103,20 +73,18 @@
103
73
  "resolved": "https://registry.npmjs.org/axios-proxy-builder/-/axios-proxy-builder-0.1.2.tgz",
104
74
  "version": "0.1.2"
105
75
  },
106
- "node_modules/balanced-match": {
107
- "integrity": "sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==",
108
- "license": "MIT",
109
- "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.2.tgz",
110
- "version": "1.0.2"
111
- },
112
- "node_modules/brace-expansion": {
76
+ "node_modules/call-bind-apply-helpers": {
113
77
  "dependencies": {
114
- "balanced-match": "^1.0.0"
78
+ "es-errors": "^1.3.0",
79
+ "function-bind": "^1.1.2"
80
+ },
81
+ "engines": {
82
+ "node": ">= 0.4"
115
83
  },
116
- "integrity": "sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA==",
84
+ "integrity": "sha512-Sp1ablJ0ivDkSzjcaJdxEunN5/XvksFJ2sMBFfq6x0ryhQV/2b/KwFe21cMpmHtPOSij8K99/wSfoEuTObmuMQ==",
117
85
  "license": "MIT",
118
- "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-2.0.1.tgz",
119
- "version": "2.0.1"
86
+ "resolved": "https://registry.npmjs.org/call-bind-apply-helpers/-/call-bind-apply-helpers-1.0.2.tgz",
87
+ "version": "1.0.2"
120
88
  },
121
89
  "node_modules/clone": {
122
90
  "engines": {
@@ -128,24 +96,6 @@
128
96
  "resolved": "https://registry.npmjs.org/clone/-/clone-1.0.4.tgz",
129
97
  "version": "1.0.4"
130
98
  },
131
- "node_modules/color-convert": {
132
- "dependencies": {
133
- "color-name": "~1.1.4"
134
- },
135
- "engines": {
136
- "node": ">=7.0.0"
137
- },
138
- "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==",
139
- "license": "MIT",
140
- "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz",
141
- "version": "2.0.1"
142
- },
143
- "node_modules/color-name": {
144
- "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==",
145
- "license": "MIT",
146
- "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz",
147
- "version": "1.1.4"
148
- },
149
99
  "node_modules/combined-stream": {
150
100
  "dependencies": {
151
101
  "delayed-stream": "~1.0.0"
@@ -170,20 +120,6 @@
170
120
  "resolved": "https://registry.npmjs.org/console.table/-/console.table-0.10.0.tgz",
171
121
  "version": "0.10.0"
172
122
  },
173
- "node_modules/cross-spawn": {
174
- "dependencies": {
175
- "path-key": "^3.1.0",
176
- "shebang-command": "^2.0.0",
177
- "which": "^2.0.1"
178
- },
179
- "engines": {
180
- "node": ">= 8"
181
- },
182
- "integrity": "sha512-uV2QOWP2nWzsy2aMp8aRibhi9dlzF5Hgh5SHaB9OiTGEyDTiJJyx0uy51QXdyWbtAHNua4XJzUKca3OzKUd3vA==",
183
- "license": "MIT",
184
- "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-7.0.6.tgz",
185
- "version": "7.0.6"
186
- },
187
123
  "node_modules/defaults": {
188
124
  "dependencies": {
189
125
  "clone": "^1.0.2"
@@ -210,16 +146,24 @@
210
146
  "engines": {
211
147
  "node": ">=8"
212
148
  },
213
- "integrity": "sha512-bwy0MGW55bG41VqxxypOsdSdGqLwXPI/focwgTYCFMbdUiBAxLg9CFzG08sz2aqzknwiX7Hkl0bQENjg8iLByw==",
149
+ "integrity": "sha512-Btj2BOOO83o3WyH59e8MgXsxEQVcarkUOpEYrubB0urwnN10yQ364rsiByU11nZlqWYZm05i/of7io4mzihBtQ==",
214
150
  "license": "Apache-2.0",
215
- "resolved": "https://registry.npmjs.org/detect-libc/-/detect-libc-2.0.3.tgz",
216
- "version": "2.0.3"
151
+ "resolved": "https://registry.npmjs.org/detect-libc/-/detect-libc-2.1.2.tgz",
152
+ "version": "2.1.2"
217
153
  },
218
- "node_modules/eastasianwidth": {
219
- "integrity": "sha512-I88TYZWc9XiYHRQ4/3c5rjjfgkjhLyW2luGIheGERbNQ6OY7yTybanSpDXZa8y7VUP9YmDcYa+eyq4ca7iLqWA==",
154
+ "node_modules/dunder-proto": {
155
+ "dependencies": {
156
+ "call-bind-apply-helpers": "^1.0.1",
157
+ "es-errors": "^1.3.0",
158
+ "gopd": "^1.2.0"
159
+ },
160
+ "engines": {
161
+ "node": ">= 0.4"
162
+ },
163
+ "integrity": "sha512-KIN/nDJBQRcXw0MLVhZE9iQHmG68qAVIBg9CqmUYjmQIhgij9U5MFvrqkUL5FbtyyzZuOeOt0zdeRe4UY7ct+A==",
220
164
  "license": "MIT",
221
- "resolved": "https://registry.npmjs.org/eastasianwidth/-/eastasianwidth-0.2.0.tgz",
222
- "version": "0.2.0"
165
+ "resolved": "https://registry.npmjs.org/dunder-proto/-/dunder-proto-1.0.1.tgz",
166
+ "version": "1.0.1"
223
167
  },
224
168
  "node_modules/easy-table": {
225
169
  "integrity": "sha512-oq33hWOSSnl2Hoh00tZWaIPi1ievrD9aFG82/IgjlycAnW9hHx5PkJiXpxPsgEE+H7BsbVQXFVFST8TEXS6/pA==",
@@ -230,11 +174,50 @@
230
174
  "resolved": "https://registry.npmjs.org/easy-table/-/easy-table-1.1.0.tgz",
231
175
  "version": "1.1.0"
232
176
  },
233
- "node_modules/emoji-regex": {
234
- "integrity": "sha512-L18DaJsXSUk2+42pv8mLs5jJT2hqFkFE4j21wOmgbUqsZ2hL72NsUU785g9RXgo3s0ZNgVl42TiHp3ZtOv/Vyg==",
177
+ "node_modules/es-define-property": {
178
+ "engines": {
179
+ "node": ">= 0.4"
180
+ },
181
+ "integrity": "sha512-e3nRfgfUZ4rNGL232gUgX06QNyyez04KdjFrF+LTRoOXmrOgFKDg4BCdsjW8EnT69eqdYGmRpJwiPVYNrCaW3g==",
182
+ "license": "MIT",
183
+ "resolved": "https://registry.npmjs.org/es-define-property/-/es-define-property-1.0.1.tgz",
184
+ "version": "1.0.1"
185
+ },
186
+ "node_modules/es-errors": {
187
+ "engines": {
188
+ "node": ">= 0.4"
189
+ },
190
+ "integrity": "sha512-Zf5H2Kxt2xjTvbJvP2ZWLEICxA6j+hAmMzIlypy4xcBg1vKVnx89Wy0GbS+kf5cwCVFFzdCFh2XSCFNULS6csw==",
191
+ "license": "MIT",
192
+ "resolved": "https://registry.npmjs.org/es-errors/-/es-errors-1.3.0.tgz",
193
+ "version": "1.3.0"
194
+ },
195
+ "node_modules/es-object-atoms": {
196
+ "dependencies": {
197
+ "es-errors": "^1.3.0"
198
+ },
199
+ "engines": {
200
+ "node": ">= 0.4"
201
+ },
202
+ "integrity": "sha512-FGgH2h8zKNim9ljj7dankFPcICIK9Cp5bm+c2gQSYePhpaG5+esrLODihIorn+Pe6FGJzWhXQotPv73jTaldXA==",
203
+ "license": "MIT",
204
+ "resolved": "https://registry.npmjs.org/es-object-atoms/-/es-object-atoms-1.1.1.tgz",
205
+ "version": "1.1.1"
206
+ },
207
+ "node_modules/es-set-tostringtag": {
208
+ "dependencies": {
209
+ "es-errors": "^1.3.0",
210
+ "get-intrinsic": "^1.2.6",
211
+ "has-tostringtag": "^1.0.2",
212
+ "hasown": "^2.0.2"
213
+ },
214
+ "engines": {
215
+ "node": ">= 0.4"
216
+ },
217
+ "integrity": "sha512-j6vWzfrGVfyXxge+O0x5sh6cvxAog0a/4Rdd2K36zCMV5eJ+/+tOAngRO8cODMNWbVRdVlmGZQL2YS3yR8bIUA==",
235
218
  "license": "MIT",
236
- "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-9.2.2.tgz",
237
- "version": "9.2.2"
219
+ "resolved": "https://registry.npmjs.org/es-set-tostringtag/-/es-set-tostringtag-2.1.0.tgz",
220
+ "version": "2.1.0"
238
221
  },
239
222
  "node_modules/follow-redirects": {
240
223
  "engines": {
@@ -256,99 +239,153 @@
256
239
  "resolved": "https://registry.npmjs.org/follow-redirects/-/follow-redirects-1.15.6.tgz",
257
240
  "version": "1.15.6"
258
241
  },
259
- "node_modules/foreground-child": {
242
+ "node_modules/form-data": {
260
243
  "dependencies": {
261
- "cross-spawn": "^7.0.0",
262
- "signal-exit": "^4.0.1"
244
+ "asynckit": "^0.4.0",
245
+ "combined-stream": "^1.0.8",
246
+ "es-set-tostringtag": "^2.1.0",
247
+ "hasown": "^2.0.2",
248
+ "mime-types": "^2.1.12"
263
249
  },
264
250
  "engines": {
265
- "node": ">=14"
251
+ "node": ">= 6"
266
252
  },
253
+ "integrity": "sha512-KrGhL9Q4zjj0kiUt5OO4Mr/A/jlI2jDYs5eHBpYHPcBEVSiipAvn2Ko2HnPe20rmcuuvMHNdZFp+4IlGTMF0Ow==",
254
+ "license": "MIT",
255
+ "resolved": "https://registry.npmjs.org/form-data/-/form-data-4.0.4.tgz",
256
+ "version": "4.0.4"
257
+ },
258
+ "node_modules/function-bind": {
267
259
  "funding": {
268
- "url": "https://github.com/sponsors/isaacs"
260
+ "url": "https://github.com/sponsors/ljharb"
269
261
  },
270
- "integrity": "sha512-TMKDUnIte6bfb5nWv7V/caI169OHgvwjb7V4WkeUvbQQdjr5rWKqHFiKWb/fcOwB+CzBT+qbWjvj+DVwRskpIg==",
271
- "license": "ISC",
272
- "resolved": "https://registry.npmjs.org/foreground-child/-/foreground-child-3.1.1.tgz",
273
- "version": "3.1.1"
262
+ "integrity": "sha512-7XHNxH7qX9xG5mIwxkhumTox/MIRNcOgDrxWsMt2pAr23WHp6MrRlN7FBSFpCpr+oVO0F744iUgR82nJMfG2SA==",
263
+ "license": "MIT",
264
+ "resolved": "https://registry.npmjs.org/function-bind/-/function-bind-1.1.2.tgz",
265
+ "version": "1.1.2"
274
266
  },
275
- "node_modules/form-data": {
267
+ "node_modules/get-intrinsic": {
276
268
  "dependencies": {
277
- "asynckit": "^0.4.0",
278
- "combined-stream": "^1.0.8",
279
- "mime-types": "^2.1.12"
269
+ "call-bind-apply-helpers": "^1.0.2",
270
+ "es-define-property": "^1.0.1",
271
+ "es-errors": "^1.3.0",
272
+ "es-object-atoms": "^1.1.1",
273
+ "function-bind": "^1.1.2",
274
+ "get-proto": "^1.0.1",
275
+ "gopd": "^1.2.0",
276
+ "has-symbols": "^1.1.0",
277
+ "hasown": "^2.0.2",
278
+ "math-intrinsics": "^1.1.0"
280
279
  },
281
280
  "engines": {
282
- "node": ">= 6"
281
+ "node": ">= 0.4"
282
+ },
283
+ "funding": {
284
+ "url": "https://github.com/sponsors/ljharb"
283
285
  },
284
- "integrity": "sha512-ETEklSGi5t0QMZuiXoA/Q6vcnxcLQP5vdugSpuAyi6SVGi2clPPp+xgEhuMaHC+zGgn31Kd235W35f7Hykkaww==",
286
+ "integrity": "sha512-9fSjSaos/fRIVIp+xSJlE6lfwhES7LNtKaCBIamHsjr2na1BiABJPo0mOjjz8GJDURarmCPGqaiVg5mfjb98CQ==",
285
287
  "license": "MIT",
286
- "resolved": "https://registry.npmjs.org/form-data/-/form-data-4.0.0.tgz",
287
- "version": "4.0.0"
288
+ "resolved": "https://registry.npmjs.org/get-intrinsic/-/get-intrinsic-1.3.0.tgz",
289
+ "version": "1.3.0"
288
290
  },
289
- "node_modules/glob": {
290
- "bin": {
291
- "glob": "dist/esm/bin.mjs"
291
+ "node_modules/get-proto": {
292
+ "dependencies": {
293
+ "dunder-proto": "^1.0.1",
294
+ "es-object-atoms": "^1.0.0"
295
+ },
296
+ "engines": {
297
+ "node": ">= 0.4"
292
298
  },
299
+ "integrity": "sha512-sTSfBjoXBp89JvIKIefqw7U2CCebsc74kiY6awiGogKtoSGbgjYE/G/+l9sF3MWFPNc9IcoOC4ODfKHfxFmp0g==",
300
+ "license": "MIT",
301
+ "resolved": "https://registry.npmjs.org/get-proto/-/get-proto-1.0.1.tgz",
302
+ "version": "1.0.1"
303
+ },
304
+ "node_modules/glob": {
293
305
  "dependencies": {
294
- "foreground-child": "^3.1.0",
295
- "jackspeak": "^3.1.2",
296
- "minimatch": "^9.0.1",
297
- "minipass": "^7.0.4",
298
- "path-scurry": "^1.11.0"
306
+ "minimatch": "^10.1.1",
307
+ "minipass": "^7.1.2",
308
+ "path-scurry": "^2.0.0"
299
309
  },
300
310
  "engines": {
301
- "node": ">=16 || 14 >=14.18"
311
+ "node": "20 || >=22"
302
312
  },
303
313
  "funding": {
304
314
  "url": "https://github.com/sponsors/isaacs"
305
315
  },
306
- "integrity": "sha512-JDKXl1DiuuHJ6fVS2FXjownaavciiHNUU4mOvV/B793RLh05vZL1rcPnCSaOgv1hDT6RDlY7AB7ZUvFYAtPgAw==",
307
- "license": "ISC",
308
- "resolved": "https://registry.npmjs.org/glob/-/glob-10.3.16.tgz",
309
- "version": "10.3.16"
316
+ "integrity": "sha512-tvZgpqk6fz4BaNZ66ZsRaZnbHvP/jG3uKJvAZOwEVUL4RTA5nJeeLYfyN9/VA8NX/V3IBG+hkeuGpKjvELkVhA==",
317
+ "license": "BlueOak-1.0.0",
318
+ "resolved": "https://registry.npmjs.org/glob/-/glob-13.0.0.tgz",
319
+ "version": "13.0.0"
310
320
  },
311
- "node_modules/is-fullwidth-code-point": {
321
+ "node_modules/gopd": {
312
322
  "engines": {
313
- "node": ">=8"
323
+ "node": ">= 0.4"
324
+ },
325
+ "funding": {
326
+ "url": "https://github.com/sponsors/ljharb"
314
327
  },
315
- "integrity": "sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==",
328
+ "integrity": "sha512-ZUKRh6/kUFoAiTAtTYPZJ3hw9wNxx+BIBOijnlG9PnrJsCcSjs1wyyD6vJpaYtgnzDrKYRSqf3OO6Rfa93xsRg==",
316
329
  "license": "MIT",
317
- "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz",
318
- "version": "3.0.0"
330
+ "resolved": "https://registry.npmjs.org/gopd/-/gopd-1.2.0.tgz",
331
+ "version": "1.2.0"
319
332
  },
320
- "node_modules/isexe": {
321
- "integrity": "sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==",
322
- "license": "ISC",
323
- "resolved": "https://registry.npmjs.org/isexe/-/isexe-2.0.0.tgz",
324
- "version": "2.0.0"
333
+ "node_modules/has-symbols": {
334
+ "engines": {
335
+ "node": ">= 0.4"
336
+ },
337
+ "funding": {
338
+ "url": "https://github.com/sponsors/ljharb"
339
+ },
340
+ "integrity": "sha512-1cDNdwJ2Jaohmb3sg4OmKaMBwuC48sYni5HUw2DvsC8LjGTLK9h+eb1X6RyuOHe4hT0ULCW68iomhjUoKUqlPQ==",
341
+ "license": "MIT",
342
+ "resolved": "https://registry.npmjs.org/has-symbols/-/has-symbols-1.1.0.tgz",
343
+ "version": "1.1.0"
325
344
  },
326
- "node_modules/jackspeak": {
345
+ "node_modules/has-tostringtag": {
327
346
  "dependencies": {
328
- "@isaacs/cliui": "^8.0.2"
347
+ "has-symbols": "^1.0.3"
329
348
  },
330
349
  "engines": {
331
- "node": ">=14"
350
+ "node": ">= 0.4"
332
351
  },
333
352
  "funding": {
334
- "url": "https://github.com/sponsors/isaacs"
353
+ "url": "https://github.com/sponsors/ljharb"
335
354
  },
336
- "integrity": "sha512-kWmLKn2tRtfYMF/BakihVVRzBKOxz4gJMiL2Rj91WnAB5TPZumSH99R/Yf1qE1u4uRimvCSJfm6hnxohXeEXjQ==",
337
- "license": "BlueOak-1.0.0",
338
- "optionalDependencies": {
339
- "@pkgjs/parseargs": "^0.11.0"
355
+ "integrity": "sha512-NqADB8VjPFLM2V0VvHUewwwsw0ZWBaIdgo+ieHtK3hasLz4qeCRjYcqfB6AQrBggRKppKF8L52/VqdVsO47Dlw==",
356
+ "license": "MIT",
357
+ "resolved": "https://registry.npmjs.org/has-tostringtag/-/has-tostringtag-1.0.2.tgz",
358
+ "version": "1.0.2"
359
+ },
360
+ "node_modules/hasown": {
361
+ "dependencies": {
362
+ "function-bind": "^1.1.2"
340
363
  },
341
- "resolved": "https://registry.npmjs.org/jackspeak/-/jackspeak-3.1.2.tgz",
342
- "version": "3.1.2"
364
+ "engines": {
365
+ "node": ">= 0.4"
366
+ },
367
+ "integrity": "sha512-0hJU9SCPvmMzIBdZFqNPXWa6dqh7WdH0cII9y+CyS8rG3nL48Bclra9HmKhVVUHyPWNH5Y7xDwAB7bfgSjkUMQ==",
368
+ "license": "MIT",
369
+ "resolved": "https://registry.npmjs.org/hasown/-/hasown-2.0.2.tgz",
370
+ "version": "2.0.2"
343
371
  },
344
372
  "node_modules/lru-cache": {
345
373
  "engines": {
346
- "node": "14 || >=16.14"
374
+ "node": "20 || >=22"
347
375
  },
348
- "integrity": "sha512-9hp3Vp2/hFQUiIwKo8XCeFVnrg8Pk3TYNPIR7tJADKi5YfcF7vEaK7avFHTlSy3kOKYaJQaalfEo6YuXdceBOQ==",
349
- "license": "ISC",
350
- "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-10.2.2.tgz",
351
- "version": "10.2.2"
376
+ "integrity": "sha512-B5Y16Jr9LB9dHVkh6ZevG+vAbOsNOYCX+sXvFWFu7B3Iz5mijW3zdbMyhsh8ANd2mSWBYdJgnqi+mL7/LrOPYg==",
377
+ "license": "BlueOak-1.0.0",
378
+ "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-11.2.4.tgz",
379
+ "version": "11.2.4"
380
+ },
381
+ "node_modules/math-intrinsics": {
382
+ "engines": {
383
+ "node": ">= 0.4"
384
+ },
385
+ "integrity": "sha512-/IXtbwEk5HTPyEwyKX6hGkYXxM9nbj64B+ilVJnC/R6B0pH5G4V3b0pVbL7DBj4tkhBAppbQUlf6F6Xl9LHu1g==",
386
+ "license": "MIT",
387
+ "resolved": "https://registry.npmjs.org/math-intrinsics/-/math-intrinsics-1.1.0.tgz",
388
+ "version": "1.1.0"
352
389
  },
353
390
  "node_modules/mime-db": {
354
391
  "engines": {
@@ -373,51 +410,49 @@
373
410
  },
374
411
  "node_modules/minimatch": {
375
412
  "dependencies": {
376
- "brace-expansion": "^2.0.1"
413
+ "@isaacs/brace-expansion": "^5.0.0"
377
414
  },
378
415
  "engines": {
379
- "node": ">=16 || 14 >=14.17"
416
+ "node": "20 || >=22"
380
417
  },
381
418
  "funding": {
382
419
  "url": "https://github.com/sponsors/isaacs"
383
420
  },
384
- "integrity": "sha512-KqWh+VchfxcMNRAJjj2tnsSJdNbHsVgnkBhTNrW7AjVo6OvLtxw8zfT9oLw1JSohlFzJ8jCoTgaoXvJ+kHt6fw==",
385
- "license": "ISC",
386
- "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-9.0.4.tgz",
387
- "version": "9.0.4"
421
+ "integrity": "sha512-enIvLvRAFZYXJzkCYG5RKmPfrFArdLv+R+lbQ53BmIMLIry74bjKzX6iHAm8WYamJkhSSEabrWN5D97XnKObjQ==",
422
+ "license": "BlueOak-1.0.0",
423
+ "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-10.1.1.tgz",
424
+ "version": "10.1.1"
388
425
  },
389
426
  "node_modules/minipass": {
390
427
  "engines": {
391
428
  "node": ">=16 || 14 >=14.17"
392
429
  },
393
430
  "integrity": "sha512-qOOzS1cBTWYF4BH8fVePDBOO9iptMnGUEZwNc/cMWnTV2nVLZ7VoNWEPHkYczZA0pdoA7dl6e7FL659nX9S2aw==",
431
+ "license": "ISC",
394
432
  "resolved": "https://registry.npmjs.org/minipass/-/minipass-7.1.2.tgz",
395
433
  "version": "7.1.2"
396
434
  },
397
- "node_modules/path-key": {
398
- "engines": {
399
- "node": ">=8"
400
- },
401
- "integrity": "sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==",
402
- "license": "MIT",
403
- "resolved": "https://registry.npmjs.org/path-key/-/path-key-3.1.1.tgz",
404
- "version": "3.1.1"
435
+ "node_modules/package-json-from-dist": {
436
+ "integrity": "sha512-UEZIS3/by4OC8vL3P2dTXRETpebLI2NiI5vIrjaD/5UtrkFX/tNbwjTSRAGC/+7CAo2pIcBaRgWmcBBHcsaCIw==",
437
+ "license": "BlueOak-1.0.0",
438
+ "resolved": "https://registry.npmjs.org/package-json-from-dist/-/package-json-from-dist-1.0.1.tgz",
439
+ "version": "1.0.1"
405
440
  },
406
441
  "node_modules/path-scurry": {
407
442
  "dependencies": {
408
- "lru-cache": "^10.2.0",
409
- "minipass": "^5.0.0 || ^6.0.2 || ^7.0.0"
443
+ "lru-cache": "^11.0.0",
444
+ "minipass": "^7.1.2"
410
445
  },
411
446
  "engines": {
412
- "node": ">=16 || 14 >=14.18"
447
+ "node": "20 || >=22"
413
448
  },
414
449
  "funding": {
415
450
  "url": "https://github.com/sponsors/isaacs"
416
451
  },
417
- "integrity": "sha512-Xa4Nw17FS9ApQFJ9umLiJS4orGjm7ZzwUrwamcGQuHSzDyth9boKDaycYdDcZDuqYATXw4HFXgaqWTctW/v1HA==",
452
+ "integrity": "sha512-oWyT4gICAu+kaA7QWk/jvCHWarMKNs6pXOGWKDTr7cw4IGcUbW+PeTfbaQiLGheFRpjo6O9J0PmyMfQPjH71oA==",
418
453
  "license": "BlueOak-1.0.0",
419
- "resolved": "https://registry.npmjs.org/path-scurry/-/path-scurry-1.11.1.tgz",
420
- "version": "1.11.1"
454
+ "resolved": "https://registry.npmjs.org/path-scurry/-/path-scurry-2.0.1.tgz",
455
+ "version": "2.0.1"
421
456
  },
422
457
  "node_modules/prettier": {
423
458
  "bin": {
@@ -430,10 +465,10 @@
430
465
  "funding": {
431
466
  "url": "https://github.com/prettier/prettier?sponsor=1"
432
467
  },
433
- "integrity": "sha512-e9MewbtFo+Fevyuxn/4rrcDAaq0IYxPGLvObpQjiZBMAzB9IGmzlnG9RZy3FFas+eBMu2vA0CszMeduow5dIuQ==",
468
+ "integrity": "sha512-v6UNi1+3hSlVvv8fSaoUbggEM5VErKmmpGA7Pl3HF8V6uKY7rvClBOJlH6yNwQtfTueNkGVpOv/mtWL9L4bgRA==",
434
469
  "license": "MIT",
435
- "resolved": "https://registry.npmjs.org/prettier/-/prettier-3.4.2.tgz",
436
- "version": "3.4.2"
470
+ "resolved": "https://registry.npmjs.org/prettier/-/prettier-3.7.4.tgz",
471
+ "version": "3.7.4"
437
472
  },
438
473
  "node_modules/proxy-from-env": {
439
474
  "integrity": "sha512-D+zkORCbA9f1tdWRK0RaCR3GPv50cMxcrz4X8k5LTSUD1Dkw47mKJEZQNunItRTkWwgtaUSo1RVFRIG9ZXiFYg==",
@@ -446,146 +481,19 @@
446
481
  "rimraf": "dist/esm/bin.mjs"
447
482
  },
448
483
  "dependencies": {
449
- "glob": "^10.3.7"
450
- },
451
- "engines": {
452
- "node": ">=18"
453
- },
454
- "funding": {
455
- "url": "https://github.com/sponsors/isaacs"
456
- },
457
- "integrity": "sha512-XSh0V2/yNhDEi8HwdIefD8MLgs4LQXPag/nEJWs3YUc3Upn+UHa1GyIkEg9xSSNt7HnkO5FjTvmcRzgf+8UZuw==",
458
- "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-5.0.8.tgz",
459
- "version": "5.0.8"
460
- },
461
- "node_modules/shebang-command": {
462
- "dependencies": {
463
- "shebang-regex": "^3.0.0"
464
- },
465
- "engines": {
466
- "node": ">=8"
467
- },
468
- "integrity": "sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==",
469
- "license": "MIT",
470
- "resolved": "https://registry.npmjs.org/shebang-command/-/shebang-command-2.0.0.tgz",
471
- "version": "2.0.0"
472
- },
473
- "node_modules/shebang-regex": {
474
- "engines": {
475
- "node": ">=8"
484
+ "glob": "^13.0.0",
485
+ "package-json-from-dist": "^1.0.1"
476
486
  },
477
- "integrity": "sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==",
478
- "license": "MIT",
479
- "resolved": "https://registry.npmjs.org/shebang-regex/-/shebang-regex-3.0.0.tgz",
480
- "version": "3.0.0"
481
- },
482
- "node_modules/signal-exit": {
483
487
  "engines": {
484
- "node": ">=14"
488
+ "node": "20 || >=22"
485
489
  },
486
490
  "funding": {
487
491
  "url": "https://github.com/sponsors/isaacs"
488
492
  },
489
- "integrity": "sha512-bzyZ1e88w9O1iNJbKnOlvYTrWPDl46O1bG0D3XInv+9tkPrxrN8jUUTiFlDkkmKWgn1M6CfIA13SuGqOa9Korw==",
490
- "license": "ISC",
491
- "resolved": "https://registry.npmjs.org/signal-exit/-/signal-exit-4.1.0.tgz",
492
- "version": "4.1.0"
493
- },
494
- "node_modules/string-width": {
495
- "dependencies": {
496
- "eastasianwidth": "^0.2.0",
497
- "emoji-regex": "^9.2.2",
498
- "strip-ansi": "^7.0.1"
499
- },
500
- "engines": {
501
- "node": ">=12"
502
- },
503
- "funding": {
504
- "url": "https://github.com/sponsors/sindresorhus"
505
- },
506
- "integrity": "sha512-HnLOCR3vjcY8beoNLtcjZ5/nxn2afmME6lhrDrebokqMap+XbeW8n9TXpPDOqdGK5qcI3oT0GKTW6wC7EMiVqA==",
507
- "license": "MIT",
508
- "resolved": "https://registry.npmjs.org/string-width/-/string-width-5.1.2.tgz",
509
- "version": "5.1.2"
510
- },
511
- "node_modules/string-width-cjs": {
512
- "dependencies": {
513
- "emoji-regex": "^8.0.0",
514
- "is-fullwidth-code-point": "^3.0.0",
515
- "strip-ansi": "^6.0.1"
516
- },
517
- "engines": {
518
- "node": ">=8"
519
- },
520
- "integrity": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==",
521
- "license": "MIT",
522
- "name": "string-width",
523
- "resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz",
524
- "version": "4.2.3"
525
- },
526
- "node_modules/string-width-cjs/node_modules/ansi-regex": {
527
- "engines": {
528
- "node": ">=8"
529
- },
530
- "integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==",
531
- "license": "MIT",
532
- "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz",
533
- "version": "5.0.1"
534
- },
535
- "node_modules/string-width-cjs/node_modules/emoji-regex": {
536
- "integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==",
537
- "license": "MIT",
538
- "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz",
539
- "version": "8.0.0"
540
- },
541
- "node_modules/string-width-cjs/node_modules/strip-ansi": {
542
- "dependencies": {
543
- "ansi-regex": "^5.0.1"
544
- },
545
- "engines": {
546
- "node": ">=8"
547
- },
548
- "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==",
549
- "license": "MIT",
550
- "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz",
551
- "version": "6.0.1"
552
- },
553
- "node_modules/strip-ansi": {
554
- "dependencies": {
555
- "ansi-regex": "^6.0.1"
556
- },
557
- "engines": {
558
- "node": ">=12"
559
- },
560
- "funding": {
561
- "url": "https://github.com/chalk/strip-ansi?sponsor=1"
562
- },
563
- "integrity": "sha512-iq6eVVI64nQQTRYq2KtEg2d2uU7LElhTJwsH4YzIHZshxlgZms/wIc4VoDQTlG/IvVIrBKG06CrZnp0qv7hkcQ==",
564
- "license": "MIT",
565
- "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-7.1.0.tgz",
566
- "version": "7.1.0"
567
- },
568
- "node_modules/strip-ansi-cjs": {
569
- "dependencies": {
570
- "ansi-regex": "^5.0.1"
571
- },
572
- "engines": {
573
- "node": ">=8"
574
- },
575
- "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==",
576
- "license": "MIT",
577
- "name": "strip-ansi",
578
- "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz",
579
- "version": "6.0.1"
580
- },
581
- "node_modules/strip-ansi-cjs/node_modules/ansi-regex": {
582
- "engines": {
583
- "node": ">=8"
584
- },
585
- "integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==",
586
- "license": "MIT",
587
- "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz",
588
- "version": "5.0.1"
493
+ "integrity": "sha512-cFCkPslJv7BAXJsYlK1dZsbP8/ZNLkCAQ0bi1hf5EKX2QHegmDFEFA6QhuYJlk7UDdc+02JjO80YSOrWPpw06g==",
494
+ "license": "BlueOak-1.0.0",
495
+ "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-6.1.2.tgz",
496
+ "version": "6.1.2"
589
497
  },
590
498
  "node_modules/tunnel": {
591
499
  "engines": {
@@ -605,114 +513,8 @@
605
513
  "optional": true,
606
514
  "resolved": "https://registry.npmjs.org/wcwidth/-/wcwidth-1.0.1.tgz",
607
515
  "version": "1.0.1"
608
- },
609
- "node_modules/which": {
610
- "bin": {
611
- "node-which": "bin/node-which"
612
- },
613
- "dependencies": {
614
- "isexe": "^2.0.0"
615
- },
616
- "engines": {
617
- "node": ">= 8"
618
- },
619
- "integrity": "sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==",
620
- "license": "ISC",
621
- "resolved": "https://registry.npmjs.org/which/-/which-2.0.2.tgz",
622
- "version": "2.0.2"
623
- },
624
- "node_modules/wrap-ansi": {
625
- "dependencies": {
626
- "ansi-styles": "^6.1.0",
627
- "string-width": "^5.0.1",
628
- "strip-ansi": "^7.0.1"
629
- },
630
- "engines": {
631
- "node": ">=12"
632
- },
633
- "funding": {
634
- "url": "https://github.com/chalk/wrap-ansi?sponsor=1"
635
- },
636
- "integrity": "sha512-si7QWI6zUMq56bESFvagtmzMdGOtoxfR+Sez11Mobfc7tm+VkUckk9bW2UeffTGVUbOksxmSw0AA2gs8g71NCQ==",
637
- "license": "MIT",
638
- "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-8.1.0.tgz",
639
- "version": "8.1.0"
640
- },
641
- "node_modules/wrap-ansi-cjs": {
642
- "dependencies": {
643
- "ansi-styles": "^4.0.0",
644
- "string-width": "^4.1.0",
645
- "strip-ansi": "^6.0.0"
646
- },
647
- "engines": {
648
- "node": ">=10"
649
- },
650
- "funding": {
651
- "url": "https://github.com/chalk/wrap-ansi?sponsor=1"
652
- },
653
- "integrity": "sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==",
654
- "license": "MIT",
655
- "name": "wrap-ansi",
656
- "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-7.0.0.tgz",
657
- "version": "7.0.0"
658
- },
659
- "node_modules/wrap-ansi-cjs/node_modules/ansi-regex": {
660
- "engines": {
661
- "node": ">=8"
662
- },
663
- "integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==",
664
- "license": "MIT",
665
- "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz",
666
- "version": "5.0.1"
667
- },
668
- "node_modules/wrap-ansi-cjs/node_modules/ansi-styles": {
669
- "dependencies": {
670
- "color-convert": "^2.0.1"
671
- },
672
- "engines": {
673
- "node": ">=8"
674
- },
675
- "funding": {
676
- "url": "https://github.com/chalk/ansi-styles?sponsor=1"
677
- },
678
- "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==",
679
- "license": "MIT",
680
- "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz",
681
- "version": "4.3.0"
682
- },
683
- "node_modules/wrap-ansi-cjs/node_modules/emoji-regex": {
684
- "integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==",
685
- "license": "MIT",
686
- "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz",
687
- "version": "8.0.0"
688
- },
689
- "node_modules/wrap-ansi-cjs/node_modules/string-width": {
690
- "dependencies": {
691
- "emoji-regex": "^8.0.0",
692
- "is-fullwidth-code-point": "^3.0.0",
693
- "strip-ansi": "^6.0.1"
694
- },
695
- "engines": {
696
- "node": ">=8"
697
- },
698
- "integrity": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==",
699
- "license": "MIT",
700
- "resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz",
701
- "version": "4.2.3"
702
- },
703
- "node_modules/wrap-ansi-cjs/node_modules/strip-ansi": {
704
- "dependencies": {
705
- "ansi-regex": "^5.0.1"
706
- },
707
- "engines": {
708
- "node": ">=8"
709
- },
710
- "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==",
711
- "license": "MIT",
712
- "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz",
713
- "version": "6.0.1"
714
516
  }
715
517
  },
716
518
  "requires": true,
717
- "version": "0.8.0"
519
+ "version": "0.10.1"
718
520
  }
package/package.json CHANGED
@@ -1,20 +1,20 @@
1
1
  {
2
- "artifactDownloadUrl": "https://github.com/brendangraham14/steer/releases/download/steer-v0.8.0",
2
+ "artifactDownloadUrl": "https://github.com/BrendanGraham14/steer/releases/download/steer-v0.10.1",
3
3
  "author": "Brendan Graham <brendanigraham@gmail.com>",
4
4
  "bin": {
5
5
  "schema-generator": "run-schema-generator.js",
6
6
  "steer": "run-steer.js"
7
7
  },
8
8
  "dependencies": {
9
- "axios": "^1.7.9",
9
+ "axios": "^1.13.2",
10
10
  "axios-proxy-builder": "^0.1.2",
11
11
  "console.table": "^0.10.0",
12
- "detect-libc": "^2.0.3",
13
- "rimraf": "^5.0.8"
12
+ "detect-libc": "^2.1.2",
13
+ "rimraf": "^6.1.2"
14
14
  },
15
15
  "description": "Command-line interface for Steer coding agent.",
16
16
  "devDependencies": {
17
- "prettier": "^3.4.2"
17
+ "prettier": "^3.7.4"
18
18
  },
19
19
  "engines": {
20
20
  "node": ">=14",
@@ -24,11 +24,11 @@
24
24
  "major": 2,
25
25
  "series": 35
26
26
  },
27
- "homepage": "https://github.com/brendangraham14/steer",
27
+ "homepage": "https://github.com/BrendanGraham14/steer",
28
28
  "license": "AGPL-3.0-or-later",
29
29
  "name": "@brendangraham/steer",
30
30
  "preferUnplugged": true,
31
- "repository": "https://github.com/brendangraham14/steer",
31
+ "repository": "https://github.com/BrendanGraham14/steer",
32
32
  "scripts": {
33
33
  "fmt": "prettier --write **/*.js",
34
34
  "fmt:check": "prettier --check **/*.js",
@@ -68,7 +68,7 @@
68
68
  "zipExt": ".tar.xz"
69
69
  }
70
70
  },
71
- "version": "0.8.0",
71
+ "version": "0.10.1",
72
72
  "volta": {
73
73
  "node": "18.14.1",
74
74
  "npm": "9.5.0"