-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
71 lines (71 loc) · 1.61 KB
/
Copy pathpackage.json
File metadata and controls
71 lines (71 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
68
69
70
71
{
"name": "@bergetai/opencode-auth",
"version": "1.0.24",
"description": "Berget AI auth plugin for OpenCode - authenticate with your Berget account",
"author": "Berget AI",
"repository": "https://github.com/berget-ai/opencode-berget-auth",
"license": "MIT",
"type": "module",
"publishConfig": {
"access": "public"
},
"files": [
"index.ts",
"src"
],
"exports": {
".": "./index.ts",
"./server": "./index.ts"
},
"scripts": {
"typecheck": "tsc --noEmit",
"test": "vitest run",
"test:watch": "vitest",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"format": "prettier --write .",
"format:check": "prettier --check .",
"prepare": "husky"
},
"lint-staged": {
"*.{ts,tsx}": [
"eslint --fix",
"prettier --write"
],
"*.{json,yml,yaml,md}": [
"prettier --write"
]
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"@types/bun": "latest",
"@types/node": "^22.0.0",
"eslint": "^10.3.0",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-perfectionist": "^5.9.0",
"eslint-plugin-prettier": "^5.5.5",
"eslint-plugin-promise": "^7.3.0",
"eslint-plugin-sonarjs": "^4.0.3",
"eslint-plugin-unicorn": "64.0.0",
"husky": "^9.1.7",
"lint-staged": "^17.0.3",
"prettier": "^3.8.3",
"typescript-eslint": "^8.59.3",
"vitest": "^4.1.6"
},
"peerDependencies": {
"typescript": "^5.0.0"
},
"dependencies": {
"@opencode-ai/plugin": "1.3.13"
},
"keywords": [
"opencode",
"opencode-plugins",
"berget",
"berget-ai",
"auth",
"oauth",
"keycloak"
]
}