-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 1.57 KB
/
package.json
File metadata and controls
63 lines (63 loc) · 1.57 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
52
53
54
55
56
57
58
59
60
61
62
63
{
"name": "opencode-claude-code-auth",
"version": "0.1.6",
"description": "OpenCode plugin that brings back Anthropic auth — Claude Code session, browser OAuth, or API key",
"type": "module",
"license": "MIT",
"author": "ragingstar2063",
"homepage": "https://github.com/ragingstar2063/opencode-claude-code-auth#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/ragingstar2063/opencode-claude-code-auth.git"
},
"bugs": {
"url": "https://github.com/ragingstar2063/opencode-claude-code-auth/issues"
},
"bin": {
"opencode-claude-code-auth": "dist/cli.js"
},
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": "./dist/index.js"
},
"files": [
"dist",
"README.md",
"LICENSE"
],
"keywords": [
"opencode",
"opencode-plugin",
"anthropic",
"claude",
"claude-code",
"oauth",
"authentication",
"ai",
"typescript",
"cli",
"claude-pro",
"claude-max",
"pkce",
"token-refresh",
"developer-tools",
"coding-agent"
],
"scripts": {
"build": "tsc -p tsconfig.json",
"typecheck": "tsc -p tsconfig.json --noEmit",
"smoke": "node -e \"import('./dist/index.js').then((m)=>{if(typeof m.ClaudeCodeAuthPlugin!=='function') throw new Error('Missing ClaudeCodeAuthPlugin')})\" && node ./dist/cli.js help >/dev/null"
},
"dependencies": {
"@opencode-ai/plugin": "^1.2.24",
"jsonc-parser": "^3.3.1"
},
"devDependencies": {
"@types/node": "^22.13.9",
"typescript": "^5.8.2"
},
"engines": {
"node": ">=20"
}
}