-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.3 KB
/
Copy pathpackage.json
File metadata and controls
58 lines (58 loc) · 1.3 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
{
"name": "@harars/opencode-switch-openai-auth-plugin",
"version": "0.1.6",
"description": "OpenCode TUI plugin for switching saved OpenAI OAuth accounts",
"repository": {
"type": "git",
"url": "git+https://github.com/HArars/opencode-switch-openai-auth-plugin.git"
},
"homepage": "https://github.com/HArars/opencode-switch-openai-auth-plugin#readme",
"bugs": {
"url": "https://github.com/HArars/opencode-switch-openai-auth-plugin/issues"
},
"keywords": [
"opencode",
"plugin",
"tui",
"openai",
"oauth",
"auth",
"account-switcher"
],
"type": "module",
"license": "MIT",
"main": "./dist/index.js",
"exports": {
".": "./dist/index.js",
"./tui": "./dist/tui.js"
},
"engines": {
"opencode": "^1.0.0"
},
"oc-plugin": [["tui", {
"compact": true
}]],
"scripts": {
"build": "bun ./scripts/build.ts",
"prepack": "bun run build",
"typecheck": "bunx tsc -p tsconfig.json --noEmit",
"test": "bun test"
},
"files": [
"dist",
"README.md",
"LICENSE"
],
"peerDependencies": {
"@opencode-ai/plugin": "^1.0.0"
},
"dependencies": {
"@opentui/core": "^0.1.93",
"@opentui/solid": "^0.1.93",
"solid-js": "^1.9.12"
},
"devDependencies": {
"bun-types": "^1.3.11",
"typescript": "^6.0.2"
}
}