caelus 0.1.1 → 0.2.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.
Files changed (2) hide show
  1. package/README.md +12 -1
  2. package/package.json +2 -2
package/README.md CHANGED
@@ -34,9 +34,13 @@ Moon to ~10″ via the analytic series. The 729 KB tier (1920–2080 JPL-fit Moo
34
34
 
35
35
  ## Usage
36
36
 
37
+ ```bash
38
+ npm install caelus
39
+ ```
40
+
37
41
  ```ts
38
42
  import { Engine, fmtLon } from "caelus";
39
- import { loadNodeData } from "caelus"; // Node only
43
+ import { loadNodeData } from "caelus/node"; // Node only
40
44
 
41
45
  // Node: filesystem loader
42
46
  const engine = new Engine(loadNodeData("./data", "embedded", "full"));
@@ -82,3 +86,10 @@ test/golden.test.ts conformance suite vs Python fixtures
82
86
  sums in reverse); keep orders identical to the Python reference.
83
87
  - All data is injected via `EngineData` — the core has zero I/O, zero deps,
84
88
  and runs identically in browser, edge runtime, or Node.
89
+
90
+ ## The caelus packages
91
+
92
+ - caelus — this package
93
+ - [caelus-birth](https://www.npmjs.com/package/caelus-birth) — local birth time + place → UT (charts take UT; use this)
94
+ - [caelus-wheel](https://www.npmjs.com/package/caelus-wheel) — React SVG chart wheel
95
+ - [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",
3
- "version": "0.1.1",
3
+ "version": "0.2.1",
4
4
  "description": "Astrological ephemeris engine. MIT, no AGPL, no ephemeris files. Checked against Swiss Ephemeris.",
5
5
  "type": "module",
6
6
  "main": "dist/src/index.js",
@@ -57,4 +57,4 @@
57
57
  "swiss-ephemeris-alternative"
58
58
  ],
59
59
  "sideEffects": false
60
- }
60
+ }