@fre4x/gemini 1.0.43 → 1.0.45
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 +4 -5
- package/dist/index.js +52900 -40657
- package/package.json +10 -4
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@fre4x/gemini",
|
|
3
|
-
"version": "1.0.
|
|
4
|
-
"description": "A Gemini MCP server providing
|
|
3
|
+
"version": "1.0.45",
|
|
4
|
+
"description": "A Gemini MCP server providing multimodal analysis and image/video generation.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "dist/index.js",
|
|
7
7
|
"bin": {
|
|
@@ -16,7 +16,7 @@
|
|
|
16
16
|
"start": "node dist/index.js",
|
|
17
17
|
"dev": "tsx src/index.ts",
|
|
18
18
|
"watch": "tsc -w",
|
|
19
|
-
"inspector": "cross-env npx
|
|
19
|
+
"inspector": "cross-env MOCK=true npx @modelcontextprotocol/inspector node dist/index.js",
|
|
20
20
|
"inspector:published": "cross-env GEMINI_MOCK=true npx -y @modelcontextprotocol/inspector npx @fre4x/gemini",
|
|
21
21
|
"test": "vitest run --exclude dist"
|
|
22
22
|
},
|
|
@@ -31,14 +31,20 @@
|
|
|
31
31
|
],
|
|
32
32
|
"author": "fritzprix <innocentevil0914@gmail.com>",
|
|
33
33
|
"license": "MIT",
|
|
34
|
+
"engines": {
|
|
35
|
+
"node": ">=20"
|
|
36
|
+
},
|
|
34
37
|
"dependencies": {
|
|
35
|
-
"@google/genai": "^
|
|
38
|
+
"@google/genai": "^1.44.0",
|
|
39
|
+
"@google/generative-ai": "^0.21.0",
|
|
36
40
|
"@modelcontextprotocol/sdk": "^1.26.0",
|
|
41
|
+
"p-limit": "^6.1.0",
|
|
37
42
|
"zod": "^4.0.0"
|
|
38
43
|
},
|
|
39
44
|
"devDependencies": {
|
|
40
45
|
"@modelcontextprotocol/inspector": "^0.21.0",
|
|
41
46
|
"@types/node": "^22.13.5",
|
|
47
|
+
"cross-env": "^7.0.3",
|
|
42
48
|
"tsx": "^4.19.3",
|
|
43
49
|
"typescript": "^5.7.3",
|
|
44
50
|
"vitest": "^4.0.18"
|