restty 0.1.0 → 0.1.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/README.md +5 -3
- package/package.json +10 -1
package/README.md
CHANGED
|
@@ -1,8 +1,10 @@
|
|
|
1
1
|
# restty
|
|
2
2
|
|
|
3
|
-
](https://github.com/wiedymi)
|
|
4
|
+
[](https://x.com/wiedymi)
|
|
5
|
+
[](mailto:contact@wiedymi.com)
|
|
6
|
+
[](https://discord.gg/zemMZtrkSb)
|
|
7
|
+
[](https://github.com/sponsors/vivy-company)
|
|
6
8
|
|
|
7
9
|
Experimental project: browser terminal rendering with a WASM terminal core, GPU rendering (WebGPU + WebGL2 fallback), and TypeScript text shaping.
|
|
8
10
|
|
package/package.json
CHANGED
|
@@ -1,7 +1,15 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "restty",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.1",
|
|
4
4
|
"description": "Browser terminal rendering library powered by WASM, WebGPU/WebGL2, and TypeScript text shaping.",
|
|
5
|
+
"repository": {
|
|
6
|
+
"type": "git",
|
|
7
|
+
"url": "https://github.com/wiedymi/restty"
|
|
8
|
+
},
|
|
9
|
+
"bugs": {
|
|
10
|
+
"url": "https://github.com/wiedymi/restty/issues"
|
|
11
|
+
},
|
|
12
|
+
"homepage": "https://github.com/wiedymi/restty#readme",
|
|
5
13
|
"license": "MIT",
|
|
6
14
|
"files": [
|
|
7
15
|
"dist",
|
|
@@ -37,6 +45,7 @@
|
|
|
37
45
|
"format:check": "bun run format:base --check",
|
|
38
46
|
"prepublishOnly": "bun run build",
|
|
39
47
|
"test": "bun test ./tests",
|
|
48
|
+
"test:ci": "bun test $(find tests -name '*.test.ts' ! -name 'webgpu-glyph.test.ts' | sort)",
|
|
40
49
|
"pty": "bun run playground/pty-server.ts",
|
|
41
50
|
"playground": "bun run playground/dev-server.ts",
|
|
42
51
|
"playground:static": "bun run playground/server.ts"
|