-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.25 KB
/
package.json
File metadata and controls
50 lines (50 loc) · 1.25 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
{
"name": "local-code-opencode-plugin",
"version": "1.0.2",
"description": "Inject git-based handoff context when switching models in OpenCode.",
"type": "module",
"main": "./src/plugin.js",
"bin": {
"lc-opencode-context": "bin/lc-opencode-context.js"
},
"files": [
"bin/",
"docs/",
"src/",
"LICENSE",
"README.md"
],
"exports": {
".": "./src/plugin.js",
"./server": "./src/plugin.js",
"./context": "./src/context.js",
"./handoff": "./src/handoff.js"
},
"scripts": {
"context": "node bin/lc-opencode-context.js",
"check": "node --check bin/lc-opencode-context.js && node --check src/context.js && node --check src/handoff.js && node --check src/plugin.js",
"test": "node --test"
},
"keywords": [
"opencode",
"opencode-plugin",
"plugin",
"local-code",
"model-handoff",
"git-context",
"model-switch"
],
"author": "Shawn Lee",
"license": "MIT",
"homepage": "https://github.com/wi202im/local-code-opencode-plugin#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/wi202im/local-code-opencode-plugin.git"
},
"bugs": {
"url": "https://github.com/wi202im/local-code-opencode-plugin/issues"
},
"engines": {
"node": ">=20"
}
}