astro-ascendant 0.1.1 → 0.1.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.
- package/README.md +3 -3
- package/package.json +4 -3
package/README.md
CHANGED
|
@@ -9,13 +9,13 @@ Effect-first TypeScript library for sidereal Vedic astrology calculations.
|
|
|
9
9
|
|
|
10
10
|
## Installation
|
|
11
11
|
|
|
12
|
-
Install the package and its peer
|
|
12
|
+
Install the package and its Effect peer dependency:
|
|
13
13
|
|
|
14
14
|
```bash
|
|
15
|
-
npm install astro-ascendant effect
|
|
15
|
+
npm install astro-ascendant effect
|
|
16
16
|
```
|
|
17
17
|
|
|
18
|
-
The package uses ES modules and includes TypeScript declarations.
|
|
18
|
+
The package includes the Swiss Ephemeris adapter dependency, uses ES modules, and includes TypeScript declarations.
|
|
19
19
|
|
|
20
20
|
## Quick start
|
|
21
21
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "astro-ascendant",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.2",
|
|
4
4
|
"homepage": "https://ascendant-docs.vercel.app",
|
|
5
5
|
"license": "AGPL-3.0-or-later",
|
|
6
6
|
"files": [
|
|
@@ -79,6 +79,9 @@
|
|
|
79
79
|
"access": "public",
|
|
80
80
|
"provenance": true
|
|
81
81
|
},
|
|
82
|
+
"dependencies": {
|
|
83
|
+
"@swisseph/node": "^1.3.1"
|
|
84
|
+
},
|
|
82
85
|
"scripts": {
|
|
83
86
|
"prepare": "effect-tsgo patch --typescript --oxlint",
|
|
84
87
|
"build": "tsc -p tsconfig.build.json",
|
|
@@ -97,7 +100,6 @@
|
|
|
97
100
|
"@effect/platform-bun": "^4.0.0-rc.112",
|
|
98
101
|
"@effect/tsgo": "0.37.0",
|
|
99
102
|
"@effect/vitest": "^4.0.0-rc.112",
|
|
100
|
-
"@swisseph/node": "^1.3.1",
|
|
101
103
|
"effect": "^4.0.0-rc.112",
|
|
102
104
|
"oxfmt": "^0.65.0",
|
|
103
105
|
"oxlint": "1.80.0",
|
|
@@ -106,7 +108,6 @@
|
|
|
106
108
|
"vitest": "latest"
|
|
107
109
|
},
|
|
108
110
|
"peerDependencies": {
|
|
109
|
-
"@swisseph/node": "^1.3.1",
|
|
110
111
|
"effect": "^4.0.0-rc.112"
|
|
111
112
|
},
|
|
112
113
|
"trustedDependencies": [
|