termdot 0.1.6 → 0.1.8

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.
Files changed (2) hide show
  1. package/README.md +13 -1
  2. 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
@@ -113,9 +124,10 @@ npx tsx examples/rotating-cube.ts # 3D wireframe cube
113
124
  npx tsx examples/cube.ts # Perspective-projected cube
114
125
  npx tsx examples/speed-test.ts # Benchmark
115
126
  npx tsx examples/spinners.ts # Braille status indicators
127
+ npx tsx examples/icons.ts # Icon rendering
116
128
  npx tsx examples/kitchen-sink.ts # Every feature demo
117
129
  ```
118
130
 
119
131
  ## License
120
132
 
121
- MIT
133
+ MIT — [Ahmad Awais](https://x.com/MrAhmadAwais)
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "termdot",
3
- "version": "0.1.6",
3
+ "version": "0.1.8",
4
4
  "description": "Braille TUI — draw in the terminal with Unicode braille characters",
5
5
  "type": "module",
6
6
  "main": "./dist/index.cjs",