@sunerpy/kiro-provider 0.3.1 → 0.4.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 +305 -23
- package/dist/cli.js +209 -94
- package/package.json +5 -3
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@sunerpy/kiro-provider",
|
|
3
|
-
"version": "0.
|
|
4
|
-
"description": "
|
|
3
|
+
"version": "0.4.0",
|
|
4
|
+
"description": "AWS Kiro gateway for OpenAI Responses and Anthropic Messages clients",
|
|
5
5
|
"homepage": "https://github.com/sunerpy/kiro-provider#readme",
|
|
6
6
|
"bugs": "https://github.com/sunerpy/kiro-provider/issues",
|
|
7
7
|
"license": "MIT",
|
|
@@ -22,7 +22,7 @@
|
|
|
22
22
|
"access": "public"
|
|
23
23
|
},
|
|
24
24
|
"scripts": {
|
|
25
|
-
"fmt": "bunx --bun @biomejs/biome
|
|
25
|
+
"fmt": "bunx --bun @biomejs/biome check --write ./src ./scripts ./__tests__",
|
|
26
26
|
"lint": "bunx --bun @biomejs/biome check ./src ./scripts ./__tests__",
|
|
27
27
|
"typecheck": "tsc --noEmit",
|
|
28
28
|
"test": "bun test",
|
|
@@ -35,12 +35,14 @@
|
|
|
35
35
|
"@aws/codewhisperer-streaming-client": "^1.0.34",
|
|
36
36
|
"@smithy/node-http-handler": "4.9.7",
|
|
37
37
|
"https-proxy-agent": "^9.1.0",
|
|
38
|
+
"proper-lockfile": "^4.1.2",
|
|
38
39
|
"zod": "^3.24.0"
|
|
39
40
|
},
|
|
40
41
|
"devDependencies": {
|
|
41
42
|
"@biomejs/biome": "2.2.4",
|
|
42
43
|
"@types/bun": "^1.3.6",
|
|
43
44
|
"@types/node": "^20.0.0",
|
|
45
|
+
"@types/proper-lockfile": "^4.1.4",
|
|
44
46
|
"typescript": "^5.7.3"
|
|
45
47
|
},
|
|
46
48
|
"engines": {
|