@javargasm/opencode-kiro-auth 0.1.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/README.md +190 -0
- package/dist/dashboard-stats.d.ts +22 -0
- package/dist/dashboard-stats.d.ts.map +1 -0
- package/dist/dashboard-ui.d.ts +2 -0
- package/dist/dashboard-ui.d.ts.map +1 -0
- package/dist/debug.d.ts +12 -0
- package/dist/debug.d.ts.map +1 -0
- package/dist/event-parser.d.ts +61 -0
- package/dist/event-parser.d.ts.map +1 -0
- package/dist/health.d.ts +6 -0
- package/dist/health.d.ts.map +1 -0
- package/dist/index.d.ts +8 -0
- package/dist/index.d.ts.map +1 -0
- package/dist/index.js +3647 -0
- package/dist/kiro-cli-sync.d.ts +16 -0
- package/dist/kiro-cli-sync.d.ts.map +1 -0
- package/dist/kiro-defaults.d.ts +25 -0
- package/dist/kiro-defaults.d.ts.map +1 -0
- package/dist/models.d.ts +104 -0
- package/dist/models.d.ts.map +1 -0
- package/dist/oauth.d.ts +46 -0
- package/dist/oauth.d.ts.map +1 -0
- package/dist/server.d.ts +8 -0
- package/dist/server.d.ts.map +1 -0
- package/dist/stream.d.ts +29 -0
- package/dist/stream.d.ts.map +1 -0
- package/dist/thinking-parser.d.ts +24 -0
- package/dist/thinking-parser.d.ts.map +1 -0
- package/dist/tokenizer.d.ts +2 -0
- package/dist/tokenizer.d.ts.map +1 -0
- package/dist/transform.d.ts +119 -0
- package/dist/transform.d.ts.map +1 -0
- package/dist/types.d.ts +180 -0
- package/dist/types.d.ts.map +1 -0
- package/package.json +75 -0
package/package.json
ADDED
|
@@ -0,0 +1,75 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@javargasm/opencode-kiro-auth",
|
|
3
|
+
"version": "0.1.0",
|
|
4
|
+
"description": "Kiro provider plugin for OpenCode: AWS Builder ID / Identity Center login and OpenAI compatible local gateway for CodeWhisperer streaming.",
|
|
5
|
+
"type": "module",
|
|
6
|
+
"license": "MIT",
|
|
7
|
+
"repository": {
|
|
8
|
+
"type": "git",
|
|
9
|
+
"url": "git+https://github.com/javargasm/opencode-kiro-auth.git"
|
|
10
|
+
},
|
|
11
|
+
"homepage": "https://github.com/javargasm/opencode-kiro-auth#readme",
|
|
12
|
+
"bugs": {
|
|
13
|
+
"url": "https://github.com/javargasm/opencode-kiro-auth/issues"
|
|
14
|
+
},
|
|
15
|
+
"keywords": [
|
|
16
|
+
"opencode-package",
|
|
17
|
+
"opencode",
|
|
18
|
+
"plugin",
|
|
19
|
+
"provider",
|
|
20
|
+
"kiro",
|
|
21
|
+
"aws",
|
|
22
|
+
"codewhisperer",
|
|
23
|
+
"amazon-q",
|
|
24
|
+
"claude"
|
|
25
|
+
],
|
|
26
|
+
"main": "./dist/index.js",
|
|
27
|
+
"types": "./dist/index.d.ts",
|
|
28
|
+
"exports": {
|
|
29
|
+
".": {
|
|
30
|
+
"types": "./dist/index.d.ts",
|
|
31
|
+
"import": "./dist/index.js"
|
|
32
|
+
},
|
|
33
|
+
"./server": {
|
|
34
|
+
"types": "./dist/index.d.ts",
|
|
35
|
+
"import": "./dist/index.js"
|
|
36
|
+
}
|
|
37
|
+
},
|
|
38
|
+
"files": [
|
|
39
|
+
"dist",
|
|
40
|
+
"README.md"
|
|
41
|
+
],
|
|
42
|
+
"scripts": {
|
|
43
|
+
"clean": "rm -rf dist",
|
|
44
|
+
"build:js": "bun build src/index.ts --outdir dist --target node --format esm --external '@opencode-ai/*'",
|
|
45
|
+
"build:types": "tsc -p tsconfig.build.json",
|
|
46
|
+
"build": "bun run clean && bun run build:js && bun run build:types",
|
|
47
|
+
"typecheck": "tsc --noEmit",
|
|
48
|
+
"test": "bun test",
|
|
49
|
+
"test:watch": "bun test --watch",
|
|
50
|
+
"check": "bun run typecheck && bun run test",
|
|
51
|
+
"changeset": "changeset",
|
|
52
|
+
"version": "changeset version",
|
|
53
|
+
"prepack": "bun run build",
|
|
54
|
+
"prepublishOnly": "bun run check"
|
|
55
|
+
},
|
|
56
|
+
"dependencies": {},
|
|
57
|
+
"devDependencies": {
|
|
58
|
+
"@changesets/changelog-github": "^0.5.0",
|
|
59
|
+
"@changesets/cli": "^2.27.0",
|
|
60
|
+
"@opencode-ai/plugin": "^1.17.3",
|
|
61
|
+
"@types/bun": "latest",
|
|
62
|
+
"typescript": "^5.0.0",
|
|
63
|
+
"vitest": "^2.0.0"
|
|
64
|
+
},
|
|
65
|
+
"peerDependencies": {
|
|
66
|
+
"@opencode-ai/plugin": "*"
|
|
67
|
+
},
|
|
68
|
+
"publishConfig": {
|
|
69
|
+
"access": "public",
|
|
70
|
+
"provenance": true
|
|
71
|
+
},
|
|
72
|
+
"engines": {
|
|
73
|
+
"node": ">=20"
|
|
74
|
+
}
|
|
75
|
+
}
|