-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
80 lines (80 loc) · 2.26 KB
/
Copy pathpackage.json
File metadata and controls
80 lines (80 loc) · 2.26 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
72
73
74
75
76
77
78
79
80
{
"name": "@herouucn/opencode-commandcode",
"version": "0.1.11",
"description": "Inject Command Code API provider into opencode — access Claude, GPT, Gemini, DeepSeek, Qwen, Kimi, GLM, MiniMax & Step via unified Command Code API. / 将 Command Code API provider 注入 opencode —— 通过统一的 Command Code API 使用 Claude、GPT、Gemini、DeepSeek、Qwen、Kimi、GLM、MiniMax 和 Step 模型。",
"keywords": [
"ai",
"claude",
"commandcode",
"deepseek",
"gemini",
"glm",
"gpt",
"kimi",
"llm",
"minimax",
"opencode",
"opencode-plugin",
"opencode-provider",
"qwen"
],
"homepage": "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/herouu/opencode-commandcode#readme",
"bugs": {
"url": "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/herouu/opencode-commandcode/issues"
},
"license": "MIT",
"author": "herouu",
"repository": {
"type": "git",
"url": "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/herouu/opencode-commandcode"
},
"files": [
"index.ts",
"plugin.ts",
"models.json",
"manifest.json",
"_version.txt",
"README.md",
"src/"
],
"type": "module",
"main": "index.ts",
"types": "index.ts",
"exports": {
".": {
"import": "./index.ts"
},
"./server": {
"import": "./plugin.ts"
}
},
"publishConfig": {
"access": "public"
},
"scripts": {
"lint": "oxlint --deny-warnings src scripts plugin.ts index.ts tests",
"lint:fix": "oxlint --fix src scripts plugin.ts index.ts tests",
"format": "oxfmt src scripts plugin.ts index.ts tests package.json tsconfig.json",
"format:check": "oxfmt --check src scripts plugin.ts index.ts tests package.json tsconfig.json",
"check": "bun run lint && bun run format:check && bun test tests/unit/ && bun run typecheck",
"test": "bun test tests/unit/",
"test:integration": "bun test tests/integration/",
"test:all": "bun test",
"typecheck": "tsc --noEmit",
"sync": "bun run scripts/sync-models.ts",
"sync:global": "bun run scripts/sync-models.ts --update-global",
"catalog:ci": "bun run scripts/catalog-sync-ci.ts"
},
"devDependencies": {
"@types/node": "^25.9.1",
"oxfmt": "0.63.0",
"oxlint": "1.78.0",
"typescript": "^6.0.3"
},
"peerDependencies": {
"ai": ">=6.0.0"
},
"engines": {
"bun": ">=1.0.0"
}
}