-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.32 KB
/
package.json
File metadata and controls
56 lines (56 loc) · 1.32 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
{
"name": "opencode-windsurf-auth",
"version": "0.1.0",
"description": "OpenCode plugin for Windsurf/Codeium authentication - use Windsurf models in OpenCode",
"type": "module",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"import": "./dist/index.js",
"types": "./dist/index.d.ts"
}
},
"files": [
"dist"
],
"packageManager": "bun@1.2.14",
"scripts": {
"build": "bun run tsc -p tsconfig.build.json",
"typecheck": "bun run tsc --noEmit",
"test": "bun test",
"test:unit": "bun test tests/unit",
"test:request": "bun run tests/live/request.ts",
"test:analyze": "bun run tests/live/analyze.ts",
"clean": "rm -rf dist"
},
"keywords": [
"opencode",
"windsurf",
"codeium",
"cascade",
"ai",
"plugin",
"authentication"
],
"author": "",
"license": "MIT",
"dependencies": {
"@connectrpc/connect": "^2.0.0",
"@connectrpc/connect-web": "^2.0.0",
"@bufbuild/protobuf": "^2.0.0",
"proper-lockfile": "^4.1.2",
"xdg-basedir": "^5.1.0",
"zod": "^4.3.5"
},
"devDependencies": {
"@opencode-ai/plugin": "^1.1.21",
"@types/bun": "^1.3.6",
"@types/node": "^25.0.0",
"@types/proper-lockfile": "^4.1.4",
"typescript": "^5.7.0"
},
"peerDependencies": {
"typescript": "^5"
}
}