wachi 0.1.2 → 0.1.4
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 -1
- package/package.json +7 -6
package/README.md
CHANGED
|
@@ -142,7 +142,9 @@ wachi test "slack://xoxb-token/channel"
|
|
|
142
142
|
|
|
143
143
|
## Configuration
|
|
144
144
|
|
|
145
|
-
Config lives at `~/.config/wachi/config.yml` (XDG-compliant). Auto-created on first `wachi sub`.
|
|
145
|
+
Config lives at `~/.config/wachi/config.yml` (XDG-compliant, default). Auto-created on first `wachi sub`.
|
|
146
|
+
|
|
147
|
+
`wachi` reads config in this order: `config.yml` -> `config.jsonc` -> `config.json`.
|
|
146
148
|
|
|
147
149
|
```yaml
|
|
148
150
|
# LLM config (only needed for non-RSS sites)
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "wachi",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.4",
|
|
4
4
|
"description": "Subscribe any link and get notified on change",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"type": "module",
|
|
@@ -42,6 +42,7 @@
|
|
|
42
42
|
"drizzle-orm": "0.45.1",
|
|
43
43
|
"drizzle-zod": "0.8.3",
|
|
44
44
|
"env-paths": "4.0.0",
|
|
45
|
+
"jsonc-parser": "3.3.1",
|
|
45
46
|
"knip": "5.84.1",
|
|
46
47
|
"ofetch": "1.5.1",
|
|
47
48
|
"p-limit": "7.3.0",
|
|
@@ -53,10 +54,10 @@
|
|
|
53
54
|
"zod-validation-error": "5.0.0"
|
|
54
55
|
},
|
|
55
56
|
"optionalDependencies": {
|
|
56
|
-
"@wachi-cli/darwin-arm64": "0.1.
|
|
57
|
-
"@wachi-cli/darwin-x64": "0.1.
|
|
58
|
-
"@wachi-cli/linux-arm64": "0.1.
|
|
59
|
-
"@wachi-cli/linux-x64": "0.1.
|
|
60
|
-
"@wachi-cli/win32-x64": "0.1.
|
|
57
|
+
"@wachi-cli/darwin-arm64": "0.1.4",
|
|
58
|
+
"@wachi-cli/darwin-x64": "0.1.4",
|
|
59
|
+
"@wachi-cli/linux-arm64": "0.1.4",
|
|
60
|
+
"@wachi-cli/linux-x64": "0.1.4",
|
|
61
|
+
"@wachi-cli/win32-x64": "0.1.4"
|
|
61
62
|
}
|
|
62
63
|
}
|