caelus-wheel 0.2.0 → 0.3.0

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 +11 -0
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -3,6 +3,10 @@
3
3
  React SVG chart wheel for [caelus](https://github.com/heavyblotto/caelus).
4
4
  SSR-safe, zero runtime dependencies (react is a peer), ~3.4 KB gzipped.
5
5
 
6
+ ```bash
7
+ npm install caelus-wheel
8
+ ```
9
+
6
10
  ```tsx
7
11
  import { ChartWheel } from "caelus-wheel";
8
12
 
@@ -45,3 +49,10 @@ counterclockwise.
45
49
  - Pure render: no hooks, no client-only APIs — works in server components,
46
50
  static export, and `renderToStaticMarkup` (the test suite renders real
47
51
  engine charts exactly that way).
52
+
53
+ ## The caelus packages
54
+
55
+ - [caelus](https://www.npmjs.com/package/caelus) — the engine
56
+ - [caelus-birth](https://www.npmjs.com/package/caelus-birth) — local birth time + place → UT
57
+ - caelus-wheel — this package
58
+ - [caelus-mcp](https://www.npmjs.com/package/caelus-mcp) — MCP server, six chart tools over stdio
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "caelus-wheel",
3
- "version": "0.2.0",
3
+ "version": "0.3.0",
4
4
  "description": "React SVG chart wheel for caelus: zodiac, houses, planets with collision avoidance, aspect lines. SSR-safe, zero runtime dependencies.",
5
5
  "type": "module",
6
6
  "main": "dist/src/index.js",