-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
89 lines (89 loc) · 2.53 KB
/
Copy pathpackage.json
File metadata and controls
89 lines (89 loc) · 2.53 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
81
82
83
84
85
86
87
88
89
{
"name": "@brainervirus/opencode-commandcode",
"version": "0.7.4",
"description": "Command Code API provider for opencode — use Claude, GPT, Gemini, DeepSeek, Qwen, Kimi, GLM, MiniMax, and Step models via Command Code",
"keywords": [
"ai",
"claude",
"commandcode",
"deepseek",
"gemini",
"glm",
"gpt",
"kimi",
"llm",
"minimax",
"opencode",
"opencode-plugin",
"opencode-provider",
"qwen"
],
"homepage": "https://github.com/BrainerVirus/opencode-commandcode#readme",
"bugs": {
"url": "https://github.com/BrainerVirus/opencode-commandcode/issues"
},
"license": "MIT",
"author": "Brent Weatherall",
"repository": {
"type": "git",
"url": "git+https://github.com/BrainerVirus/opencode-commandcode.git"
},
"files": [
"index.ts",
"plugin.ts",
"models.json",
"manifest.json",
"_version.txt",
"README.md",
"CHANGELOG.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 release.config.cjs",
"format:check": "oxfmt --check src scripts plugin.ts index.ts tests package.json tsconfig.json release.config.cjs",
"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",
"verify:release-candidate": "bun run scripts/verify-release-candidate.ts",
"generate-readme": "bun run scripts/generate-readme.ts",
"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": {
"@semantic-release/exec": "7.1.0",
"@semantic-release/github": "12.0.9",
"@semantic-release/npm": "13.1.5",
"@semantic-release/release-notes-generator": "14.1.1",
"@types/node": "^25.9.1",
"ai": "6.0.191",
"oxfmt": "0.63.0",
"oxlint": "1.78.0",
"semantic-release": "25.0.9",
"typescript": "^6.0.3"
},
"peerDependencies": {
"ai": ">=6.0.0"
},
"engines": {
"bun": ">=1.0.0"
}
}