termdot 0.1.7 → 0.1.9
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 +12 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -102,6 +102,17 @@ Each character cell maps to a 2×4 pixel grid:
|
|
|
102
102
|
`````
|
|
103
103
|
```
|
|
104
104
|
|
|
105
|
+
## Scripts
|
|
106
|
+
|
|
107
|
+
```sh
|
|
108
|
+
pnpm build # Bundle with tsup
|
|
109
|
+
pnpm test # Run tests (vitest)
|
|
110
|
+
pnpm test:watch # Run tests in watch mode
|
|
111
|
+
pnpm lint # Lint with Biome
|
|
112
|
+
pnpm lint:fix # Auto-fix lint issues
|
|
113
|
+
pnpm typecheck # Type-check (tsc --noEmit)
|
|
114
|
+
```
|
|
115
|
+
|
|
105
116
|
## Examples
|
|
106
117
|
|
|
107
118
|
```sh
|
|
@@ -118,4 +129,4 @@ npx tsx examples/kitchen-sink.ts # Every feature demo
|
|
|
118
129
|
|
|
119
130
|
## License
|
|
120
131
|
|
|
121
|
-
MIT
|
|
132
|
+
MIT — [Ahmad Awais](https://x.com/MrAhmadAwais)
|