-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 1.52 KB
/
package.json
File metadata and controls
65 lines (65 loc) · 1.52 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": "opencode-windsurf-auth",
"version": "0.3.3",
"description": "OpenCode plugin for Windsurf/Codeium authentication - use Windsurf models in OpenCode",
"repository": {
"type": "git",
"url": "git+https://github.com/rsvedant/opencode-windsurf-auth.git"
},
"homepage": "https://github.com/rsvedant/opencode-windsurf-auth#readme",
"bugs": {
"url": "https://github.com/rsvedant/opencode-windsurf-auth/issues"
},
"type": "module",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"import": "./dist/index.js",
"types": "./dist/index.d.ts"
}
},
"bin": {
"opencode-windsurf-auth": "./dist/src/cli.js"
},
"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": {
"xdg-basedir": "^5.1.0"
},
"devDependencies": {
"@opencode-ai/plugin": "^1.1.21",
"@types/bun": "^1.3.6",
"@types/node": "^25.0.0",
"typescript": "^5.7.0"
},
"peerDependencies": {
"typescript": "^5"
},
"engines": {
"node": ">=18.0.0",
"bun": ">=1.0.0"
}
}