-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 1.42 KB
/
package.json
File metadata and controls
65 lines (65 loc) · 1.42 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
{
"name": "opencode-kilo-auth",
"version": "1.1.4",
"description": "OpenCode plugin for Kilo Gateway authentication - access free AI models like z-ai/glm-5:free",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"type": "module",
"license": "MIT",
"author": "JungHoonGhae",
"repository": {
"type": "git",
"url": "git+https://github.com/JungHoonGhae/opencode-kilo-auth.git"
},
"homepage": "https://github.com/JungHoonGhae/opencode-kilo-auth#readme",
"bugs": {
"url": "https://github.com/JungHoonGhae/opencode-kilo-auth/issues"
},
"keywords": [
"opencode",
"kilo",
"gateway",
"ai",
"llm",
"plugin",
"free-models",
"openrouter",
"claude",
"gpt",
"gemini"
],
"engines": {
"node": ">=20.0.0"
},
"files": [
"dist/",
"README.md",
"LICENSE"
],
"exports": {
".": {
"import": "./dist/index.js",
"types": "./dist/index.d.ts"
}
},
"scripts": {
"build": "tsc",
"typecheck": "tsc --noEmit",
"fetch-models": "npx tsx scripts/fetch-models.ts",
"prepublishOnly": "npm run build"
},
"dependencies": {
"@opencode-ai/plugin": ">=0.0.0",
"@openrouter/ai-sdk-provider": "^1.5.0",
"ai": ">=4.0.0",
"open": "^10.0.0",
"zod": "^3.0.0"
},
"peerDependencies": {
"@opencode-ai/plugin": ">=0.0.0"
},
"devDependencies": {
"@types/node": "^25.2.3",
"typescript": "^5.0.0"
}
}