mirror of
https://github.com/headroomlabs-ai/headroom.git
synced 2026-08-27 14:17:10 -04:00
47 lines
1,020 B
JSON
47 lines
1,020 B
JSON
|
|
{
|
||
|
|
"name": "headroom-opencode",
|
||
|
|
"version": "0.1.0",
|
||
|
|
"description": "Headroom proxy integration plugin for OpenCode - routes LLM traffic through the Headroom proxy for token compression",
|
||
|
|
"type": "module",
|
||
|
|
"main": "./dist/index.js",
|
||
|
|
"types": "./dist/index.d.ts",
|
||
|
|
"files": [
|
||
|
|
"dist",
|
||
|
|
"hook-shim",
|
||
|
|
"README.md"
|
||
|
|
],
|
||
|
|
"scripts": {
|
||
|
|
"build": "tsup",
|
||
|
|
"test": "vitest run",
|
||
|
|
"test:watch": "vitest",
|
||
|
|
"typecheck": "tsc --noEmit"
|
||
|
|
},
|
||
|
|
"dependencies": {
|
||
|
|
"@opencode-ai/plugin": "^1.17.8",
|
||
|
|
"headroom-ai": "^0.22.3"
|
||
|
|
},
|
||
|
|
"peerDependencies": {
|
||
|
|
"@ai-sdk/openai-compatible": "*",
|
||
|
|
"@ai-sdk/provider": "*",
|
||
|
|
"ai": "*"
|
||
|
|
},
|
||
|
|
"peerDependenciesMeta": {
|
||
|
|
"@ai-sdk/openai-compatible": {
|
||
|
|
"optional": true
|
||
|
|
},
|
||
|
|
"@ai-sdk/provider": {
|
||
|
|
"optional": true
|
||
|
|
},
|
||
|
|
"ai": {
|
||
|
|
"optional": true
|
||
|
|
}
|
||
|
|
},
|
||
|
|
"devDependencies": {
|
||
|
|
"@types/node": "^22.10.0",
|
||
|
|
"tsup": "^8.0.0",
|
||
|
|
"typescript": "^5.5.0",
|
||
|
|
"vitest": "^4.1.5"
|
||
|
|
},
|
||
|
|
"license": "Apache-2.0"
|
||
|
|
}
|