gemcatch 0.3.0 → 0.5.0
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/CHANGELOG.md +110 -1
- package/README.md +137 -7
- package/db.js +60 -3
- package/gemini.js +125 -10
- package/index.js +576 -56
- package/package.json +7 -2
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "gemcatch",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.5.0",
|
|
4
4
|
"description": "Fire-and-forget CLI for Gemini's Interactions API background execution. Submit long-running research prompts, close your laptop, collect results later.",
|
|
5
5
|
"main": "index.js",
|
|
6
6
|
"bin": {
|
|
@@ -29,6 +29,7 @@
|
|
|
29
29
|
"background",
|
|
30
30
|
"async",
|
|
31
31
|
"agents",
|
|
32
|
+
"deep-research",
|
|
32
33
|
"cli",
|
|
33
34
|
"research",
|
|
34
35
|
"daemon",
|
|
@@ -46,7 +47,11 @@
|
|
|
46
47
|
"homepage": "https://github.com/Booyaka101/gemcatch#readme",
|
|
47
48
|
"dependencies": {
|
|
48
49
|
"@google/genai": "^2.12.0",
|
|
49
|
-
"better-sqlite3": "^
|
|
50
|
+
"better-sqlite3": "^13.0.3",
|
|
50
51
|
"commander": "^15.0.0"
|
|
52
|
+
},
|
|
53
|
+
"allowScripts": {
|
|
54
|
+
"@google/genai@2.16.0": true,
|
|
55
|
+
"protobufjs@7.6.5": true
|
|
51
56
|
}
|
|
52
57
|
}
|