-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 832 Bytes
/
Copy pathpackage.json
File metadata and controls
42 lines (42 loc) · 832 Bytes
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
{
"name": "@pandada8/opencode-axonhub",
"version": "0.2.6",
"description": "OpenCode plugin for discovering AxonHub models",
"type": "module",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/pandada8/opencode-axonhub"
},
"keywords": [
"opencode",
"opencode-plugin",
"axonhub",
"llm"
],
"files": [
"src",
"README.md",
"package.json"
],
"publishConfig": {
"access": "public"
},
"main": "./src/index.ts",
"exports": {
".": "./src/index.ts",
"./server": "./src/index.ts"
},
"types": "./src/index.ts",
"peerDependencies": {
"@opencode-ai/plugin": "*",
"@opencode-ai/sdk": "*"
},
"devDependencies": {
"@types/node": "^22.18.10",
"typescript": "^5.9.3"
},
"scripts": {
"check": "tsc --noEmit"
}
}