-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1017 Bytes
/
package.json
File metadata and controls
44 lines (44 loc) · 1017 Bytes
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
{
"name": "@devtheops/opencode-plugin-aws-auth-refresh",
"version": "0.1.0",
"description": "OpenCode plugin that auto-refreshes AWS credentials when auth errors are detected",
"keywords": [
"opencode",
"aws",
"sso",
"auth",
"plugin"
],
"license": "MPL-2.0",
"author": "DEVtheOPS",
"homepage": "https://github.com/DEVtheOPS/opencode-plugin-aws-auth-refresh#readme",
"bugs": {
"url": "https://github.com/DEVtheOPS/opencode-plugin-aws-auth-refresh/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/DEVtheOPS/opencode-plugin-aws-auth-refresh.git"
},
"type": "module",
"main": "src/index.ts",
"module": "src/index.ts",
"exports": {
".": "./src/index.ts"
},
"files": [
"src/"
],
"publishConfig": {
"access": "public"
},
"scripts": {
"typecheck": "tsc --noEmit"
},
"dependencies": {
"@opencode-ai/plugin": "^1.2.23"
},
"devDependencies": {
"@types/bun": "latest",
"typescript": "^5.9.3"
}
}