@sunerpy/kiro-provider 0.2.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 +217 -0
- package/dist/cli.js +162 -0
- package/package.json +49 -0
package/package.json
ADDED
|
@@ -0,0 +1,49 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@sunerpy/kiro-provider",
|
|
3
|
+
"version": "0.2.0",
|
|
4
|
+
"description": "Standalone AWS Kiro (CodeWhisperer) provider service",
|
|
5
|
+
"homepage": "https://github.com/sunerpy/kiro-provider#readme",
|
|
6
|
+
"bugs": "https://github.com/sunerpy/kiro-provider/issues",
|
|
7
|
+
"license": "MIT",
|
|
8
|
+
"repository": {
|
|
9
|
+
"type": "git",
|
|
10
|
+
"url": "git+https://github.com/sunerpy/kiro-provider.git"
|
|
11
|
+
},
|
|
12
|
+
"bin": {
|
|
13
|
+
"kiro-provider": "dist/cli.js"
|
|
14
|
+
},
|
|
15
|
+
"files": [
|
|
16
|
+
"dist/cli.js",
|
|
17
|
+
"README.md",
|
|
18
|
+
"LICENSE"
|
|
19
|
+
],
|
|
20
|
+
"type": "module",
|
|
21
|
+
"publishConfig": {
|
|
22
|
+
"access": "public"
|
|
23
|
+
},
|
|
24
|
+
"scripts": {
|
|
25
|
+
"fmt": "bunx --bun @biomejs/biome format --write ./src ./scripts ./__tests__",
|
|
26
|
+
"lint": "bunx --bun @biomejs/biome check ./src ./scripts ./__tests__",
|
|
27
|
+
"typecheck": "tsc --noEmit",
|
|
28
|
+
"test": "bun test",
|
|
29
|
+
"build": "bun build src/cli/bin.ts --outdir dist --target bun",
|
|
30
|
+
"build:binary": "bun build --compile --minify src/cli/bin.ts --outfile dist/kiro-provider",
|
|
31
|
+
"build:npm": "bun build src/cli/bin.ts --outfile dist/cli.js --target=bun --minify --banner \"#!/usr/bin/env bun\" && bun -e 'const path = \"dist/cli.js\"; const source = await Bun.file(path).text(); await Bun.write(path, source.replace(\"#!/usr/bin/env bun\\n// @bun\\n#!/usr/bin/env bun\\n\", \"#!/usr/bin/env bun\\n// @bun\\n\"));' && chmod +x dist/cli.js",
|
|
32
|
+
"prepublishOnly": "bun run build:npm"
|
|
33
|
+
},
|
|
34
|
+
"dependencies": {
|
|
35
|
+
"@aws/codewhisperer-streaming-client": "^1.0.34",
|
|
36
|
+
"@smithy/node-http-handler": "4.9.7",
|
|
37
|
+
"https-proxy-agent": "^9.1.0",
|
|
38
|
+
"zod": "^3.24.0"
|
|
39
|
+
},
|
|
40
|
+
"devDependencies": {
|
|
41
|
+
"@biomejs/biome": "2.2.4",
|
|
42
|
+
"@types/bun": "^1.3.6",
|
|
43
|
+
"@types/node": "^20.0.0",
|
|
44
|
+
"typescript": "^5.7.3"
|
|
45
|
+
},
|
|
46
|
+
"engines": {
|
|
47
|
+
"bun": ">=1.3.0"
|
|
48
|
+
}
|
|
49
|
+
}
|