@mimikkai/opencode-mimikkai-connect 1.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/LICENSE +21 -0
- package/README.md +128 -0
- package/dist/index.js +2017 -0
- package/package.json +39 -0
package/package.json
ADDED
|
@@ -0,0 +1,39 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@mimikkai/opencode-mimikkai-connect",
|
|
3
|
+
"version": "1.0.0",
|
|
4
|
+
"description": "MimikkAi auth plugin for OpenCode — device authorization + LiteLLM gateway",
|
|
5
|
+
"author": "dealenx",
|
|
6
|
+
"license": "MIT",
|
|
7
|
+
"publishConfig": {
|
|
8
|
+
"access": "public"
|
|
9
|
+
},
|
|
10
|
+
"keywords": [
|
|
11
|
+
"opencode",
|
|
12
|
+
"plugin",
|
|
13
|
+
"auth",
|
|
14
|
+
"mimikkai",
|
|
15
|
+
"litellm"
|
|
16
|
+
],
|
|
17
|
+
"type": "module",
|
|
18
|
+
"main": "dist/index.js",
|
|
19
|
+
"files": [
|
|
20
|
+
"dist/",
|
|
21
|
+
"README.md",
|
|
22
|
+
"LICENSE"
|
|
23
|
+
],
|
|
24
|
+
"scripts": {
|
|
25
|
+
"build": "bun build ./src/index.ts --outdir ./dist --target node",
|
|
26
|
+
"test": "bun test"
|
|
27
|
+
},
|
|
28
|
+
"devDependencies": {
|
|
29
|
+
"@types/node": "^24.12.4",
|
|
30
|
+
"@opencode-ai/plugin": "^1.18.4",
|
|
31
|
+
"@types/proper-lockfile": "^4.1.2"
|
|
32
|
+
},
|
|
33
|
+
"peerDependencies": {
|
|
34
|
+
"typescript": "^5"
|
|
35
|
+
},
|
|
36
|
+
"dependencies": {
|
|
37
|
+
"proper-lockfile": "^4.1.2"
|
|
38
|
+
}
|
|
39
|
+
}
|