-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 967 Bytes
/
package.json
File metadata and controls
44 lines (44 loc) · 967 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
{
"name": "opencode-gemini-tools",
"version": "0.0.1",
"author": {
"name": "Alex Grad",
"email": "alex@grad.dev",
"url": "https://grad.dev"
},
"description": "A plugin for the OpenCode that enables Google Gemini's built-in tools: Google Search, Google Maps, URL Context, and Code Execution",
"keywords": [
"opencode",
"gemini",
"google",
"google-search",
"google-maps",
"url-context",
"code-execution"
],
"license": "MIT",
"type": "module",
"repository": {
"type": "git",
"url": "git+https://github.com/graddotdev/opencode-gemini-tools.git"
},
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
}
},
"scripts": {
"build": "tsc"
},
"prepublishOnly": "bun run build",
"devDependencies": {
"@types/bun": "latest",
"typescript": "^5.9.3"
}
}