@sunerpy/kiro-provider 0.8.0 → 0.8.1
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 +6 -3
- package/dist/cli.js +65 -63
- package/package.json +7 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@sunerpy/kiro-provider",
|
|
3
|
-
"version": "0.8.
|
|
3
|
+
"version": "0.8.1",
|
|
4
4
|
"description": "Protocol-fidelity AWS Kiro gateway for verified OpenAI Responses and Anthropic Messages subsets",
|
|
5
5
|
"homepage": "https://github.com/sunerpy/kiro-provider#readme",
|
|
6
6
|
"bugs": "https://github.com/sunerpy/kiro-provider/issues",
|
|
@@ -29,6 +29,12 @@
|
|
|
29
29
|
"build": "bun build src/cli/bin.ts --outdir dist --target bun",
|
|
30
30
|
"build:binary": "bun build --compile --minify src/cli/bin.ts --outfile dist/kiro-provider",
|
|
31
31
|
"build:npm": "bun build src/cli/bin.ts --outfile dist/cli.js --target=bun --minify && chmod +x dist/cli.js",
|
|
32
|
+
"probe:projection-fidelity": "bun run scripts/probe-projection-fidelity.ts",
|
|
33
|
+
"study:effort": "bun run scripts/effort-study.ts",
|
|
34
|
+
"study:effort:run": "bun run scripts/run-effort-study.ts",
|
|
35
|
+
"study:effort:responses": "bun run scripts/responses-effort-study.ts",
|
|
36
|
+
"e2e:responses": "bun run scripts/responses-live-e2e.ts",
|
|
37
|
+
"diff:kiro-cli-wire": "bun run scripts/kiro-cli-wire-diff.ts",
|
|
32
38
|
"prepublishOnly": "bun run build:npm"
|
|
33
39
|
},
|
|
34
40
|
"dependencies": {
|