@angelrove/forecast-utils 1.1.24 → 1.1.27

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 ADDED
@@ -0,0 +1,39 @@
1
+ # @angelrove/forecast-utils
2
+
3
+ Several utility libraries for my "tierracolora.com" project.
4
+
5
+ Includes directory `images/ws` with weather images (symbols)
6
+
7
+ I use private libraries for the following:
8
+ - Astronomy calculations: [suncalc3](https://github.com/hypnos3/suncalc3)
9
+
10
+ # Documentation
11
+ ## Modules
12
+
13
+ [Astronomy/MoonCalc](./docs/index/variables/MoonCalc.md)
14
+
15
+ MoonCalc for calculating moon times, positions, and phases.
16
+
17
+ [Astronomy/SunCalc](./docs/index/variables/SunCalc.md)
18
+
19
+ SunCalc for calculating solar times, positions, and phases.
20
+
21
+ [Geolocation](./docs/Geolocation/README.md)
22
+
23
+ Geolocation utils
24
+
25
+ [OpenMeteo](./docs/OpenMeteo/README.md)
26
+
27
+ Use the OpenMeteo forecast API
28
+
29
+ [Utils](./docs/Utils/README.md)
30
+
31
+ Weather utils
32
+
33
+ [Utils/TimeDateStr](./docs/index/variables/TimeDateStr.md)
34
+
35
+ Helpers for get date and time formeted strings
36
+
37
+ <hr>
38
+
39
+ [Go to complete documentation...](https://github.com/angelrove/forecast-utils)
@@ -10,7 +10,6 @@
10
10
  import type { MoonData, MoonDataExt, MoonTimes } from "./types.js";
11
11
  /**
12
12
  * MoonCalc.
13
- * @ignore
14
13
  */
15
14
  export declare const MoonCalc: {
16
15
  data: typeof data;
@@ -1,3 +1,14 @@
1
+ /**
2
+ * Several utility libraries for my "tierracolora.com" project.
3
+ *
4
+ * Includes directory `images/ws` with weather images (symbols)
5
+ *
6
+ * I use private libraries for the following:
7
+ * - Astronomy calculations: `suncalc3`
8
+ *
9
+ * // Documentation
10
+ *
11
+ */
1
12
  export { MoonCalc } from "./astronomy/moon/MoonCalc";
2
13
  export { SunCalc } from "./astronomy/sun/SunCalc";
3
14
  export { timeFromLocation } from "./geolocation/timeFromLocation";
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "author": "Jose Angel Romero Vegas",
3
3
  "name": "@angelrove/forecast-utils",
4
- "version": "1.1.24",
4
+ "version": "1.1.27",
5
5
  "description": "Utilities for obtaining weather and astronomy forecast data.",
6
6
  "license": "MIT",
7
7
  "publishConfig": {
@@ -39,12 +39,12 @@
39
39
  },
40
40
  "devDependencies": {
41
41
  "@biomejs/biome": "2.2.4",
42
- "@types/react": "^19.1.12",
43
- "@types/react-dom": "^19.1.9",
44
- "typescript": "^5.9.2"
42
+ "@types/react": "^19.2.14",
43
+ "@types/react-dom": "^19.2.3",
44
+ "typescript": "^5.9.3"
45
45
  },
46
46
  "dependencies": {
47
- "typedoc": "^0.28.12",
48
- "typedoc-plugin-markdown": "^4.8.1"
47
+ "typedoc": "^0.28.18",
48
+ "typedoc-plugin-markdown": "^4.11.0"
49
49
  }
50
50
  }
@@ -6,7 +6,6 @@
6
6
 
7
7
  /**
8
8
  * TimeDateStr.
9
- * @ignore
10
9
  */
11
10
  export const TimeDateStr = {
12
11
  dateFormat,