@gui-chat-plugin/weather 0.0.1 → 0.0.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 +10 -0
- package/package.json +13 -5
package/README.md
CHANGED
|
@@ -1,5 +1,7 @@
|
|
|
1
1
|
# @gui-chat-plugin/weather
|
|
2
2
|
|
|
3
|
+
[](https://www.npmjs.com/package/@gui-chat-plugin/weather)
|
|
4
|
+
|
|
3
5
|
Weather forecast plugin for GUI Chat applications. Fetches weather data from Japan Meteorological Agency (JMA) API.
|
|
4
6
|
|
|
5
7
|
## Features
|
|
@@ -80,6 +82,14 @@ yarn build
|
|
|
80
82
|
yarn lint
|
|
81
83
|
```
|
|
82
84
|
|
|
85
|
+
## Test Prompts
|
|
86
|
+
|
|
87
|
+
Try these prompts to test the plugin:
|
|
88
|
+
|
|
89
|
+
1. "What's the weather forecast for Tokyo?"
|
|
90
|
+
2. "Show me the weather in Osaka"
|
|
91
|
+
3. "Will it rain in Hokkaido this week?"
|
|
92
|
+
|
|
83
93
|
## License
|
|
84
94
|
|
|
85
95
|
MIT
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@gui-chat-plugin/weather",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.2",
|
|
4
4
|
"description": "Weather forecast plugin for GUI Chat - Japan Meteorological Agency",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "./dist/index.cjs",
|
|
@@ -24,7 +24,9 @@
|
|
|
24
24
|
},
|
|
25
25
|
"./style.css": "./dist/style.css"
|
|
26
26
|
},
|
|
27
|
-
"files": [
|
|
27
|
+
"files": [
|
|
28
|
+
"dist"
|
|
29
|
+
],
|
|
28
30
|
"scripts": {
|
|
29
31
|
"dev": "vite",
|
|
30
32
|
"build": "vite build && vue-tsc -p tsconfig.build.json --emitDeclarationOnly",
|
|
@@ -35,7 +37,7 @@
|
|
|
35
37
|
"vue": "^3.5.0"
|
|
36
38
|
},
|
|
37
39
|
"dependencies": {
|
|
38
|
-
"gui-chat-protocol": "^0.0.
|
|
40
|
+
"gui-chat-protocol": "^0.0.3"
|
|
39
41
|
},
|
|
40
42
|
"devDependencies": {
|
|
41
43
|
"@tailwindcss/vite": "^4.1.18",
|
|
@@ -48,10 +50,16 @@
|
|
|
48
50
|
"tailwindcss": "^4.1.18",
|
|
49
51
|
"typescript": "~5.9.3",
|
|
50
52
|
"vite": "^7.3.1",
|
|
51
|
-
"vue": "^3.5.
|
|
53
|
+
"vue": "^3.5.27",
|
|
52
54
|
"vue-eslint-parser": "^10.2.0",
|
|
53
55
|
"vue-tsc": "^3.2.2"
|
|
54
56
|
},
|
|
55
|
-
"keywords": [
|
|
57
|
+
"keywords": [
|
|
58
|
+
"guichat",
|
|
59
|
+
"plugin",
|
|
60
|
+
"weather",
|
|
61
|
+
"jma",
|
|
62
|
+
"forecast"
|
|
63
|
+
],
|
|
56
64
|
"license": "MIT"
|
|
57
65
|
}
|