-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.07 KB
/
package.json
File metadata and controls
51 lines (51 loc) · 1.07 KB
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
45
46
47
48
49
50
51
{
"name": "@shantur/opencode-gemini-auth",
"version": "0.0.1",
"description": "OAuth authentication plugin for Google Gemini CLI in OpenCode",
"main": "./index.mjs",
"type": "module",
"keywords": [
"opencode",
"gemini",
"google",
"oauth",
"authentication",
"ai",
"plugin",
"gemini-cli",
"cloud-code-assist"
],
"author": "@shantur",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/shantur/opencode-gemini-auth"
},
"bugs": {
"url": "https://github.com/shantur/opencode-gemini-auth/issues"
},
"homepage": "https://github.com/shantur/opencode-gemini-auth#readme",
"exports": {
".": "./index.mjs"
},
"files": [
"index.mjs",
"README.md",
"LICENSE"
],
"publishConfig": {
"access": "public"
},
"devDependencies": {
"@opencode-ai/plugin": "^0.4.45"
},
"dependencies": {
"@openauthjs/openauth": "^0.4.3"
},
"engines": {
"node": ">=18.0.0"
},
"scripts": {
"prepublishOnly": "echo 'Ready to publish @shantur/opencode-gemini-auth'"
}
}