-
Notifications
You must be signed in to change notification settings - Fork 114
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 1.24 KB
/
Copy pathpackage.json
File metadata and controls
41 lines (41 loc) · 1.24 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
{
"name": "opencode-gemini-auth",
"version": "1.4.16",
"author": "jenslys",
"repository": "https://github.com/jenslys/opencode-gemini-auth",
"main": "./dist/index.js",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"default": "./dist/index.js"
}
},
"files": [
"dist",
"README.md",
"LICENSE"
],
"license": "MIT",
"type": "module",
"scripts": {
"build": "tsup",
"smoke:node-import": "node -e \"import(require.resolve('opencode-gemini-auth')).then(() => console.log('ok')).catch((error) => { console.error(error); process.exit(1); })\"",
"prepack": "bun run build && bun run smoke:node-import",
"prepublishOnly": "bun test && bun run prepack",
"update:gemini-cli": "git -C .local/gemini-cli pull --ff-only",
"update:gemini-cli-version": "node commands/sync-gemini-cli-version.mjs",
"update:gemini-cli-sync": "npm run update:gemini-cli && npm run update:gemini-cli-version"
},
"devDependencies": {
"@types/bun": "latest",
"tsup": "^8.5.1",
"typescript": "^5.9.3"
},
"dependencies": {
"@opencode-ai/plugin": "^1.2.20",
"@openauthjs/openauth": "^0.4.3"
}
}