restty 0.1.17 → 0.1.19
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 +15 -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
|
@@ -1,5 +1,16 @@
|
|
|
1
1
|
# restty
|
|
2
2
|
|
|
3
|
+
[](https://www.npmjs.com/package/restty)
|
|
4
|
+
[](https://www.npmjs.com/package/restty)
|
|
5
|
+
[](https://github.com/wiedymi/restty/actions/workflows/ci.yml)
|
|
6
|
+
[](https://github.com/wiedymi/restty/actions/workflows/publish.yml)
|
|
7
|
+
[](https://restty.pages.dev/)
|
|
8
|
+
[](https://github.com/wiedymi)
|
|
9
|
+
[](https://x.com/wiedymi)
|
|
10
|
+
[](mailto:contact@wiedymi.com)
|
|
11
|
+
[](https://discord.gg/zemMZtrkSb)
|
|
12
|
+
[](https://github.com/sponsors/vivy-company)
|
|
13
|
+
|
|
3
14
|
Powerful, lightweight browser terminal. Batteries included.
|
|
4
15
|
|
|
5
16
|
Live demo: `https://restty.pages.dev/`
|
|
@@ -170,10 +181,7 @@ Active-pane convenience:
|
|
|
170
181
|
|
|
171
182
|
Use these only when you need lower-level control:
|
|
172
183
|
|
|
173
|
-
- `restty/
|
|
174
|
-
- `restty/input`: key/mouse/input encoding utilities
|
|
175
|
-
- `restty/pty`: PTY transport helpers
|
|
176
|
-
- `restty/internal`: full internal barrel (unstable)
|
|
184
|
+
- `restty/internal`: full internal barrel (unstable; includes low-level modules like WASM/input/pty helpers)
|
|
177
185
|
|
|
178
186
|
## Local Development
|
|
179
187
|
|
|
@@ -183,8 +191,6 @@ cd restty
|
|
|
183
191
|
git submodule update --init --recursive
|
|
184
192
|
bun install
|
|
185
193
|
bun run build:themes
|
|
186
|
-
bun run build:assets
|
|
187
|
-
bun run pty
|
|
188
194
|
bun run playground
|
|
189
195
|
```
|
|
190
196
|
|
|
@@ -198,9 +204,9 @@ bun run test # full tests
|
|
|
198
204
|
bun run test:ci # CI-safe test target
|
|
199
205
|
bun run lint # lint
|
|
200
206
|
bun run format:check # formatting check
|
|
201
|
-
bun run build:assets # playground
|
|
202
|
-
bun run
|
|
203
|
-
bun run
|
|
207
|
+
bun run build:assets # static playground bundle (playground/public/playground.js)
|
|
208
|
+
bun run playground # one-command local dev (PTY + playground dev server)
|
|
209
|
+
bun run pty # PTY websocket server only
|
|
204
210
|
```
|
|
205
211
|
|
|
206
212
|
## Documentation
|