-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
67 lines (67 loc) · 1.61 KB
/
Copy pathpackage.json
File metadata and controls
67 lines (67 loc) · 1.61 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
{
"name": "opencode-kiro",
"version": "0.4.0",
"description": "The ACP-compliant Kiro plugin for opencode: auth via the official kiro-cli login, the live Kiro model lineup through the Agent Client Protocol, and TUI credits display",
"license": "MIT",
"author": "Nacho F. Lizaur (https://github.com/NachoFLizaur)",
"repository": {
"type": "git",
"url": "git+https://github.com/NachoFLizaur/opencode-kiro.git"
},
"bugs": {
"url": "https://github.com/NachoFLizaur/opencode-kiro/issues"
},
"homepage": "https://github.com/NachoFLizaur/opencode-kiro#readme",
"type": "module",
"exports": {
"./server": {
"types": "./dist/server.d.ts",
"default": "./dist/server.js"
},
"./tui": {
"types": "./dist/tui.d.ts",
"default": "./dist/tui.js"
},
"./package.json": "./package.json"
},
"files": [
"dist"
],
"scripts": {
"build": "tsup",
"pretest": "npm run build",
"test": "vitest run",
"test:watch": "vitest",
"typecheck": "tsc --noEmit",
"prepublishOnly": "npm run build"
},
"engines": {
"node": ">=20",
"opencode": ">=1.16.0"
},
"peerDependencies": {
"@opencode-ai/plugin": "*"
},
"dependencies": {
"kiro-acp-ai-provider": "3.0.0"
},
"devDependencies": {
"@opencode-ai/plugin": "1.16.2",
"@opentui/solid": "^0.3.4",
"@types/node": "^20.19.42",
"solid-js": "^1.9.12",
"tsup": "^8.0.0",
"typescript": "^5.7.0",
"vitest": "^4.1.8"
},
"keywords": [
"opencode",
"opencode-plugin",
"kiro",
"kiro-cli",
"acp",
"agent-client-protocol",
"amazon-q",
"aws"
]
}