-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 952 Bytes
/
Copy pathpackage.json
File metadata and controls
32 lines (32 loc) · 952 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
{
"name": "opencode-cortex-mode",
"version": "1.0.2",
"description": "Cortex Mode - single-turn code orchestration plugin for OpenCode. DeepSeek Harness Engine architecture: executes multi-step TypeScript workflows locally in one AI turn, saving 80-95% tokens and cutting latency up to 15x.",
"main": "dist/index.js",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"type": "module",
"scripts": {
"build": "bun build src/index.ts --outfile dist/code_mode.js --target node --format esm",
"test": "bun test",
"test:node": "node --test tests/**/*.test.js"
},
"keywords": [
"opencode",
"opencode-plugin",
"deepseek",
"deepseek-harness",
"code-mode",
"agentic-coding",
"token-efficiency"
],
"author": "Jorginho",
"license": "MIT",
"dependencies": {
"@opencode-ai/plugin": "^1.18.13"
},
"devDependencies": {
"@types/node": "^24.0.0",
"typescript": "^5.8.0"
}
}