-
Notifications
You must be signed in to change notification settings - Fork 29
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 1.34 KB
/
package.json
File metadata and controls
65 lines (65 loc) · 1.34 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
{
"name": "@zhafron/opencode-kiro-auth",
"version": "1.8.0",
"description": "OpenCode plugin for AWS Kiro (CodeWhisperer) providing access to Claude models",
"type": "module",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "tsc -p tsconfig.build.json",
"format": "prettier --write 'src/**/*.ts'",
"typecheck": "tsc --noEmit",
"prepare": "husky"
},
"keywords": [
"opencode",
"plugin",
"kiro",
"codewhisperer",
"aws",
"claude",
"ai",
"auth"
],
"author": "tickernelz",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/tickernelz/opencode-kiro-auth.git"
},
"publishConfig": {
"access": "public"
},
"dependencies": {
"@opencode-ai/plugin": "^1.2.6",
"proper-lockfile": "^4.1.2",
"zod": "^3.24.0"
},
"devDependencies": {
"@types/node": "^20.0.0",
"@types/proper-lockfile": "^4.1.4",
"bun-types": "^1.3.6",
"husky": "^9.1.7",
"lint-staged": "^16.2.7",
"prettier": "^3.4.2",
"prettier-plugin-organize-imports": "^4.1.0",
"typescript": "^5.7.3"
},
"opencode": {
"type": "plugin",
"hooks": [
"auth",
"event"
]
},
"files": [
"dist",
"package.json",
"README.md"
],
"lint-staged": {
"*.ts": [
"prettier --write"
]
}
}