-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
103 lines (103 loc) · 2.5 KB
/
package.json
File metadata and controls
103 lines (103 loc) · 2.5 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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
{
"name": "opencode-puter-auth",
"version": "1.1.2",
"description": "OpenCode plugin for Puter.com OAuth: Claude Opus 4.5, GPT-5, Gemini, DeepSeek and 500+ models with automatic fallback and no API keys.",
"bin": {
"puter-auth": "dist/cli.js",
"puter-mcp": "dist/mcp-server.js"
},
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"type": "module",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"default": "./dist/index.js"
},
"./ai-provider": {
"types": "./dist/ai-provider/index.d.ts",
"import": "./dist/ai-provider/index.js",
"default": "./dist/ai-provider/index.js"
}
},
"license": "MIT",
"author": "chindris-mihai-alexandru",
"funding": {
"type": "ko-fi",
"url": "https://ko-fi.com/mihai_chindris"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Mihai-Codes/opencode-puter-auth.git"
},
"homepage": "https://github.com/Mihai-Codes/opencode-puter-auth#readme",
"bugs": {
"url": "https://github.com/Mihai-Codes/opencode-puter-auth/issues"
},
"keywords": [
"opencode",
"puter",
"claude",
"opus",
"sonnet",
"anthropic",
"gpt",
"openai",
"gemini",
"oauth",
"plugin",
"auth",
"ai",
"coding",
"llm",
"no-api-key",
"easy-setup",
"mcp",
"model-context-protocol",
"zed",
"claude-desktop"
],
"engines": {
"node": ">=20.0.0"
},
"files": [
"dist/",
"README.md",
"LICENSE"
],
"scripts": {
"build": "tsc -p tsconfig.build.json",
"typecheck": "tsc --noEmit",
"test": "vitest run",
"test:watch": "vitest",
"test:ui": "vitest --ui",
"test:coverage": "vitest run --coverage",
"test:smoke:openai": "npm run build && node script/openai-proxy-smoke.mjs",
"prepublishOnly": "npm run build",
"dev": "tsc -p tsconfig.build.json --watch"
},
"peerDependencies": {
"typescript": "^5"
},
"devDependencies": {
"@opencode-ai/plugin": "^1.2.16",
"@types/node": "^25.3.0",
"@vitest/coverage-v8": "^4.0.18",
"@vitest/ui": "^4.0.18",
"msw": "^2.12.10",
"opencode-antigravity-auth": "^1.6.0",
"typescript": "^5.0.0",
"vitest": "^4.0.18"
},
"dependencies": {
"@ai-sdk/provider": "^3.0.8",
"@ai-sdk/provider-utils": "^4.0.17",
"@heyputer/puter.js": "^2.2.10",
"@modelcontextprotocol/sdk": "^1.26.0",
"ai": "^6.0.111",
"open": "^11.0.0",
"xdg-basedir": "^5.1.0",
"zod": "^4.3.6"
}
}