restty 0.1.17 → 0.1.18

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 CHANGED
@@ -170,10 +170,7 @@ Active-pane convenience:
170
170
 
171
171
  Use these only when you need lower-level control:
172
172
 
173
- - `restty/wasm`: low-level WASM ABI wrapper (`loadResttyWasm`, `ResttyWasm`)
174
- - `restty/input`: key/mouse/input encoding utilities
175
- - `restty/pty`: PTY transport helpers
176
- - `restty/internal`: full internal barrel (unstable)
173
+ - `restty/internal`: full internal barrel (unstable; includes low-level modules like WASM/input/pty helpers)
177
174
 
178
175
  ## Local Development
179
176
 
@@ -183,8 +180,6 @@ cd restty
183
180
  git submodule update --init --recursive
184
181
  bun install
185
182
  bun run build:themes
186
- bun run build:assets
187
- bun run pty
188
183
  bun run playground
189
184
  ```
190
185
 
@@ -198,9 +193,9 @@ bun run test # full tests
198
193
  bun run test:ci # CI-safe test target
199
194
  bun run lint # lint
200
195
  bun run format:check # formatting check
201
- bun run build:assets # playground bundles
202
- bun run pty # local PTY websocket server
203
- bun run playground # playground dev server
196
+ bun run build:assets # static playground bundle (playground/public/playground.js)
197
+ bun run playground # one-command local dev (PTY + playground dev server)
198
+ bun run pty # PTY websocket server only
204
199
  ```
205
200
 
206
201
  ## Documentation