-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.28 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 1.28 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
{
"name": "opencode-qwencode-auth",
"version": "1.3.0",
"description": "Qwen OAuth authentication plugin for OpenCode - Access Qwen AI models (Coder, Vision) with your qwen.ai account",
"module": "index.ts",
"type": "module",
"scripts": {
"build": "bun build ./src/index.ts --outdir ./dist --target node --format esm && bun build ./src/cli.ts --outdir ./dist --target node --format esm",
"dev": "bun run --watch src/index.ts",
"typecheck": "tsc --noEmit"
},
"keywords": [
"opencode",
"qwen",
"qwen-code",
"qwen3-coder",
"qwen3-vl-plus",
"vision-model",
"oauth",
"authentication",
"ai",
"llm",
"opencode-plugins"
],
"author": "Gustavo Dias <me@gustavodias.dev>",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/gustavodiasdev/opencode-qwencode-auth.git"
},
"homepage": "https://github.com/gustavodiasdev/opencode-qwencode-auth#readme",
"bugs": {
"url": "https://github.com/gustavodiasdev/opencode-qwencode-auth/issues"
},
"devDependencies": {
"@opencode-ai/plugin": "^1.1.48",
"@types/node": "^22.0.0",
"bun-types": "^1.1.0",
"typescript": "^5.6.0"
},
"files": [
"index.ts",
"src",
"README.md"
],
"engines": {
"node": ">=20.0.0"
}
}