pattapatta 0.4.0 → 0.4.2

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 (3) hide show
  1. package/CHANGELOG.md +12 -0
  2. package/README.md +11 -1
  3. package/package.json +5 -3
package/CHANGELOG.md CHANGED
@@ -1,5 +1,17 @@
1
1
  # Changelog
2
2
 
3
+ ## 0.4.2
4
+
5
+ ### Patch Changes
6
+
7
+ - 1bb9bdd: Add `llms.txt` / `llms-full.txt` (and generated module pages) for AI consumers, keep them in sync with the docs site, and align sidebar chrome with the main content background.
8
+
9
+ ## 0.4.1
10
+
11
+ ### Patch Changes
12
+
13
+ - 170d279: Docs polish: Shiki syntax highlighting (Catppuccin), slate theme, sidebar logo, sponsor badge layout, and remove the sidebar collapse control.
14
+
3
15
  ## 0.4.0
4
16
 
5
17
  ### Minor Changes
package/README.md CHANGED
@@ -1,9 +1,14 @@
1
1
  # pattapatta
2
2
 
3
+ [![Sponsor](https://img.shields.io/badge/Sponsor-GitHub-ea4aaa?logo=githubsponsors&logoColor=white)](https://github.com/sponsors/MadOrkestra)
4
+ [![Buy Me a Coffee](https://img.shields.io/badge/Buy%20Me%20a%20Coffee-ffdd00?logo=buymeacoffee&logoColor=black)](https://www.buymeacoffee.com/madorkestra)
5
+
3
6
  Pen-plotter geometry library (inspired by [PGS](https://github.com/micycle1/PGS)): hatching, circle packing, triangulation / meshing, boolean path ops, Voronoi, tilings, and SVG I/O for Node and the browser.
4
7
 
5
8
  **Stroke marks only** — solid area fills are not the goal.
6
9
 
10
+ > **Status:** Built entirely with AI as an experiment. **Not meant for public / production use yet.** Feedback welcome via [GitHub issues](https://github.com/MadOrkestra/pattapatta/issues) on the [repository](https://github.com/MadOrkestra/pattapatta).
11
+
7
12
  [![npm](https://img.shields.io/npm/v/pattapatta.svg)](https://www.npmjs.com/package/pattapatta)
8
13
 
9
14
  ## Install
@@ -35,13 +40,16 @@ pnpm dlx pattapatta svg:roundtrip in.svg -o out.svg
35
40
 
36
41
  Live: [pattapatta.madorkestra.com](https://pattapatta.madorkestra.com) (GitHub Pages; deploys on push to `main`).
37
42
 
43
+ For AI agents: [llms.txt](https://pattapatta.madorkestra.com/llms.txt) (index) and [llms-full.txt](https://pattapatta.madorkestra.com/llms-full.txt) (full API dump). Explainer: [/llms-txt](https://pattapatta.madorkestra.com/llms-txt).
44
+
38
45
  Local documentation PWA (SvelteKit + shadcn):
39
46
 
40
47
  ```bash
41
48
  pnpm install
42
49
  pnpm docs:dev
43
50
  pnpm docs:build
44
- pnpm docs:examples # regenerate SVG figures
51
+ pnpm docs:examples # regenerate SVG figures (+ llms.txt)
52
+ pnpm docs:llms # regenerate llms.txt / llms-full.txt only
45
53
  ```
46
54
 
47
55
  ## Modules
@@ -61,3 +69,5 @@ pnpm docs:examples # regenerate SVG figures
61
69
  ## License
62
70
 
63
71
  MIT — clean-room implementation (not a GPL line-port of PGS). See `docs/decisions/`.
72
+
73
+ Source: [github.com/MadOrkestra/pattapatta](https://github.com/MadOrkestra/pattapatta) · [Issues](https://github.com/MadOrkestra/pattapatta/issues) · [Sponsor](https://github.com/sponsors/MadOrkestra) · [Buy Me a Coffee](https://www.buymeacoffee.com/madorkestra)
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "pattapatta",
3
- "version": "0.4.0",
3
+ "version": "0.4.2",
4
4
  "description": "Pen-plotter geometry library (PGS-inspired): hatching, packing, boolean paths for SVG",
5
5
  "type": "module",
6
6
  "sideEffects": false,
@@ -132,9 +132,11 @@
132
132
  "test": "vitest run",
133
133
  "test:watch": "vitest",
134
134
  "typecheck": "tsc --noEmit",
135
- "docs:examples": "pnpm run build && node scripts/generate-docs-examples.mjs",
135
+ "docs:examples": "pnpm run build && node scripts/generate-docs-examples.mjs && node scripts/generate-llms-txt.mjs",
136
+ "docs:llms": "node scripts/generate-llms-txt.mjs",
137
+ "docs:llms:check": "node scripts/generate-llms-txt.mjs --check",
136
138
  "docs:dev": "pnpm --filter website dev",
137
- "docs:build": "pnpm --filter website build",
139
+ "docs:build": "node scripts/generate-llms-txt.mjs && pnpm --filter website build",
138
140
  "changeset": "changeset",
139
141
  "version-packages": "changeset version",
140
142
  "release": "pnpm build && changeset publish",