@sunerpy/kiro-provider 3.2.1 → 3.2.3

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.
Files changed (3) hide show
  1. package/README.md +62 -469
  2. package/dist/cli.js +59 -58
  3. package/package.json +11 -6
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@sunerpy/kiro-provider",
3
- "version": "3.2.1",
3
+ "version": "3.2.3",
4
4
  "description": "OpenAI Responses-compatible AWS KiroRuntime provider with native and stateless fallback transports",
5
5
  "homepage": "https://github.com/sunerpy/kiro-provider#readme",
6
6
  "bugs": "https://github.com/sunerpy/kiro-provider/issues",
@@ -22,11 +22,11 @@
22
22
  "access": "public"
23
23
  },
24
24
  "scripts": {
25
- "fmt": "bunx --bun @biomejs/biome check --write ./src ./scripts ./__tests__",
26
- "lint": "bunx --bun @biomejs/biome check ./src ./scripts ./__tests__",
25
+ "fmt": "oxfmt --ignore-path .oxfmtignore --write '**/*.{yml,yaml,json,md}' && biome check --write ./src ./scripts ./__tests__",
26
+ "lint": "biome check ./src ./scripts ./__tests__",
27
27
  "typecheck": "tsc --noEmit",
28
28
  "test": "bun test",
29
- "build": "bun build src/cli/bin.ts --outdir dist --target bun",
29
+ "build": "bun run build:npm",
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
32
  "probe:projection-fidelity": "bun run scripts/probe-projection-fidelity.ts",
@@ -37,7 +37,10 @@
37
37
  "study:effort:responses": "bun run scripts/responses-effort-study.ts",
38
38
  "e2e:responses": "bun run scripts/responses-live-e2e.ts",
39
39
  "diff:kiro-cli-wire": "bun run scripts/kiro-cli-wire-diff.ts",
40
- "prepublishOnly": "bun run build:npm"
40
+ "prepublishOnly": "bun run build:npm",
41
+ "docs:links": "bun run scripts/check-markdown-links.ts",
42
+ "fmt:check": "oxfmt --ignore-path .oxfmtignore --check '**/*.{yml,yaml,json,md}' && biome check ./src ./scripts ./__tests__",
43
+ "check": "bun run fmt:check && bun run typecheck && bun run lint && bun run docs:links && bun run test && bun run build"
41
44
  },
42
45
  "dependencies": {
43
46
  "@aws-sdk/core": "3.975.3",
@@ -57,9 +60,11 @@
57
60
  "@types/proper-lockfile": "^4.1.4",
58
61
  "ai": "7.0.99",
59
62
  "openai": "7.13.0",
63
+ "oxfmt": "0.64.0",
60
64
  "typescript": "^5.7.3"
61
65
  },
62
66
  "engines": {
63
67
  "bun": ">=1.3.14"
64
- }
68
+ },
69
+ "packageManager": "bun@1.3.14"
65
70
  }