-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 1.72 KB
/
Copy pathpackage.json
File metadata and controls
62 lines (62 loc) · 1.72 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
{
"name": "opencode-9router-plus",
"version": "0.5.2",
"description": "Dynamic 9router provider plugin for opencode",
"repository": {
"type": "git",
"url": "git+https://github.com/ricatix/opencode-9router-plus.git"
},
"type": "module",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"bin": {
"opencode-9router-plus": "dist/cli.js"
},
"exports": {
".": {
"import": "./dist/index.js",
"types": "./dist/index.d.ts"
}
},
"files": [
"dist",
"assets",
"README.md",
"LICENSE"
],
"scripts": {
"extract:9router-catalog": "bun scripts/extract-9router-llm-catalog.ts",
"build": "tsc -p tsconfig.json",
"clean": "rimraf dist",
"test:deterministic": "bun test tests/*.test.ts",
"test:live": "bun tests/live-model-translation.smoke.ts",
"typecheck": "tsc -p tsconfig.json --noEmit",
"lint": "biome check --linter-enabled=true --formatter-enabled=false .",
"format:check": "biome check --formatter-enabled=true --linter-enabled=false .",
"format": "biome format --write .",
"knip": "knip --exclude exports,types,duplicates",
"check": "bun run format:check && bun run lint && bun run knip && bun run typecheck && bun run test:deterministic",
"prepublishOnly": "npm run clean && npm run build"
},
"keywords": [
"opencode",
"plugin",
"9router",
"ai"
],
"author": "",
"license": "MIT",
"peerDependencies": {
"@opencode-ai/plugin": ">=1.14.0"
},
"devDependencies": {
"@biomejs/biome": "^2.5.10",
"@emnapi/core": "1.11.3",
"@emnapi/runtime": "1.11.3",
"@opencode-ai/plugin": "^1.14.48",
"@types/node": "^24.10.1",
"knip": "^6.32.2",
"rimraf": "^6.1.0",
"typescript": "^5.8.2"
}
}