caelus-birth 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.
- package/README.md +11 -0
- package/package.json +3 -3
package/README.md
CHANGED
|
@@ -27,6 +27,10 @@ and (here) the Moon by 2°.
|
|
|
27
27
|
|
|
28
28
|
## Usage
|
|
29
29
|
|
|
30
|
+
```bash
|
|
31
|
+
npm install caelus-birth
|
|
32
|
+
```
|
|
33
|
+
|
|
30
34
|
```ts
|
|
31
35
|
import { toUT, localToChart } from "caelus-birth";
|
|
32
36
|
|
|
@@ -84,3 +88,10 @@ service.
|
|
|
84
88
|
Coordinates → zone is offline (`tz-lookup`, ~70 KB embedded map, CC0).
|
|
85
89
|
Zone → offset uses the runtime's Intl tzdb (Luxon, MIT). This package has
|
|
86
90
|
runtime dependencies by design; caelus core stays at zero.
|
|
91
|
+
|
|
92
|
+
## The caelus packages
|
|
93
|
+
|
|
94
|
+
- [caelus](https://www.npmjs.com/package/caelus) — the engine
|
|
95
|
+
- caelus-birth — this package
|
|
96
|
+
- [caelus-wheel](https://www.npmjs.com/package/caelus-wheel) — React SVG chart wheel
|
|
97
|
+
- [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-birth",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.2.1",
|
|
4
4
|
"description": "Local birth time + place -> UT, correctly. IANA timezone resolution for caelus charts: DST, half-hour zones, ambiguous and nonexistent times.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "dist/src/index.js",
|
|
@@ -14,7 +14,7 @@
|
|
|
14
14
|
},
|
|
15
15
|
"license": "MIT",
|
|
16
16
|
"dependencies": {
|
|
17
|
-
"caelus": "^0.
|
|
17
|
+
"caelus": "^0.2.1",
|
|
18
18
|
"luxon": "^3.7.2",
|
|
19
19
|
"tz-lookup": "^6.1.25"
|
|
20
20
|
},
|
|
@@ -48,4 +48,4 @@
|
|
|
48
48
|
"tzdb",
|
|
49
49
|
"natal-chart"
|
|
50
50
|
]
|
|
51
|
-
}
|
|
51
|
+
}
|