-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 918 Bytes
/
Copy pathpackage.json
File metadata and controls
45 lines (45 loc) · 918 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
43
44
45
{
"name": "opencode-9router-plugin",
"version": "0.1.4",
"description": "Dynamic 9router provider plugin for opencode",
"type": "module",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"bin": {
"opencode-9router-plugin": "dist/cli.js"
},
"exports": {
".": {
"import": "./dist/index.js",
"types": "./dist/index.d.ts"
}
},
"files": [
"dist",
"assets",
"README.md",
"LICENSE"
],
"scripts": {
"build": "tsc -p tsconfig.json",
"clean": "rimraf dist",
"prepublishOnly": "npm run clean && npm run build"
},
"keywords": [
"opencode",
"plugin",
"9router",
"ai"
],
"author": "",
"license": "MIT",
"peerDependencies": {
"@opencode-ai/plugin": ">=1.14.0"
},
"devDependencies": {
"@opencode-ai/plugin": "^1.14.48",
"@types/node": "^24.10.1",
"rimraf": "^6.1.0",
"typescript": "^5.8.2"
}
}