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 +4 -9
- package/dist/{app/index.js → chunk-53vdvhe3.js} +23781 -23698
- package/dist/fonts/manager.d.ts +1 -2
- package/dist/internal.js +105 -56357
- package/dist/renderer/shapes.d.ts +1 -3
- package/dist/restty.js +20 -0
- package/dist/unicode/ghostty-symbol-ranges.d.ts +1 -0
- package/dist/unicode/symbols.d.ts +6 -0
- package/package.json +8 -61
- package/dist/fonts/index.js +0 -5333
- package/dist/grid/index.js +0 -71
- package/dist/ime/index.js +0 -84
- package/dist/index.js +0 -56354
- package/dist/input/index.js +0 -1051
- package/dist/pty/index.js +0 -338
- package/dist/renderer/index.js +0 -1715
- package/dist/selection/index.js +0 -226
- package/dist/theme/index.js +0 -11218
- package/dist/wasm/index.js +0 -6003
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/
|
|
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
|
|
202
|
-
bun run
|
|
203
|
-
bun run
|
|
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
|