@happyvertical/weather 0.74.8

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/metadata.json ADDED
@@ -0,0 +1,28 @@
1
+ {
2
+ "name": "@happyvertical/weather",
3
+ "path": "packages/weather",
4
+ "position": {
5
+ "index": 30,
6
+ "count": 30
7
+ },
8
+ "description": "Weather data provider abstraction for HAppyVertical SDK",
9
+ "provides": [
10
+ "Weather data provider abstraction for HAppyVertical SDK"
11
+ ],
12
+ "implements": [],
13
+ "requires": {
14
+ "workspace": [
15
+ "@happyvertical/utils"
16
+ ],
17
+ "externalHappyVertical": [],
18
+ "external": []
19
+ },
20
+ "dependents": [],
21
+ "stability": {
22
+ "level": "stable",
23
+ "reason": "Primary package surface is described as implemented and production-oriented."
24
+ },
25
+ "keywords": [
26
+ "weather"
27
+ ]
28
+ }
package/package.json ADDED
@@ -0,0 +1,66 @@
1
+ {
2
+ "name": "@happyvertical/weather",
3
+ "version": "0.74.8",
4
+ "description": "Weather data provider abstraction for HAppyVertical SDK",
5
+ "type": "module",
6
+ "main": "./dist/index.js",
7
+ "types": "./dist/index.d.ts",
8
+ "bin": {
9
+ "have-weather-context": "./dist/cli/claude-context.js"
10
+ },
11
+ "files": [
12
+ "dist",
13
+ "README.md",
14
+ "LICENSE",
15
+ "AGENT.md",
16
+ "metadata.json"
17
+ ],
18
+ "exports": {
19
+ ".": {
20
+ "types": "./dist/index.d.ts",
21
+ "default": "./dist/index.js"
22
+ }
23
+ },
24
+ "keywords": [
25
+ "weather",
26
+ "forecast",
27
+ "openweathermap",
28
+ "environment-canada",
29
+ "happyvertical",
30
+ "sdk"
31
+ ],
32
+ "author": "HAppyVertical",
33
+ "license": "MIT",
34
+ "repository": {
35
+ "type": "git",
36
+ "url": "https://github.com/happyvertical/sdk.git",
37
+ "directory": "packages/weather"
38
+ },
39
+ "publishConfig": {
40
+ "registry": "https://registry.npmjs.org",
41
+ "access": "public"
42
+ },
43
+ "dependencies": {
44
+ "@happyvertical/utils": "0.74.8"
45
+ },
46
+ "devDependencies": {
47
+ "@types/node": "25.0.10",
48
+ "typedoc": "^0.28.19",
49
+ "typedoc-plugin-markdown": "^4.11.0",
50
+ "typescript": "^5.9.3",
51
+ "vite": "7.3.2",
52
+ "vite-plugin-dts": "4.5.4",
53
+ "vitest": "^4.1.5"
54
+ },
55
+ "scripts": {
56
+ "build": "vite build",
57
+ "build:watch": "vite build --watch",
58
+ "dev": "vite build --watch",
59
+ "test": "vitest run",
60
+ "test:watch": "vitest",
61
+ "test:optional": "VITEST_INCLUDE_OPTIONAL=true vitest run",
62
+ "clean": "rm -rf dist",
63
+ "docs": "typedoc",
64
+ "docs:watch": "typedoc --watch"
65
+ }
66
+ }