-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
67 lines (67 loc) · 1.54 KB
/
Copy pathpackage.json
File metadata and controls
67 lines (67 loc) · 1.54 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
{
"name": "@thestreamcode/openclaw-command-code",
"version": "0.1.0",
"description": "Command Code (commandcode.ai) model provider plugin for OpenClaw with live model discovery",
"type": "module",
"license": "MIT",
"private": false,
"author": "TheStreamCode",
"repository": {
"type": "git",
"url": "git+https://github.com/TheStreamCode/openclaw-command-code.git"
},
"homepage": "https://github.com/TheStreamCode/openclaw-command-code#readme",
"bugs": {
"url": "https://github.com/TheStreamCode/openclaw-command-code/issues"
},
"funding": {
"type": "github",
"url": "https://github.com/sponsors/TheStreamCode"
},
"main": "./dist/index.js",
"files": [
"dist",
"openclaw.plugin.json",
"README.md"
],
"scripts": {
"build": "tsc -p tsconfig.json",
"typecheck": "tsc -p tsconfig.json --noEmit",
"test": "vitest run",
"clean": "rimraf dist",
"prepack": "npm run build"
},
"keywords": [
"openclaw",
"openclaw-plugin",
"command-code",
"commandcode",
"llm",
"provider"
],
"openclaw": {
"extensions": [
"./dist/index.js"
],
"providers": [
"commandcode"
],
"compat": {
"pluginApi": ">=2026.7.1",
"minGatewayVersion": "2026.7.1"
},
"build": {
"openclawVersion": "2026.7.1",
"pluginSdkVersion": "2026.7.1"
}
},
"peerDependencies": {
"openclaw": ">=2026.7.1"
},
"devDependencies": {
"typescript": "^5.5.0",
"rimraf": "^5.0.0",
"vitest": "^2.1.0",
"openclaw": "2026.7.1-2"
}
}