-
Notifications
You must be signed in to change notification settings - Fork 19
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.1 KB
/
package.json
File metadata and controls
52 lines (52 loc) · 1.1 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
{
"name": "nemo-flow-opencode",
"version": "0.2.0",
"description": "OpenCode server plugin that maps OpenCode activity into NeMo Flow observability.",
"type": "module",
"main": "./server.js",
"exports": {
".": {
"default": "./server.js"
},
"./server": {
"default": "./server.js"
}
},
"files": [
"README.md",
"server.js"
],
"scripts": {
"test": "node --test test/*.mjs"
},
"keywords": [
"opencode",
"nemo-flow",
"observability",
"atif",
"atof",
"plugin"
],
"homepage": "https://github.com/NVIDIA/NeMo-Flow/blob/main/docs/integrate-frameworks/opencode.md",
"bugs": {
"url": "https://github.com/NVIDIA/NeMo-Flow/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/NVIDIA/NeMo-Flow.git",
"directory": "integrations/opencode"
},
"license": "Apache-2.0",
"engines": {
"node": ">=20.0.0"
},
"dependencies": {
"nemo-flow-node": ">0.1.0 <1.0.0"
},
"peerDependencies": {
"@opencode-ai/plugin": ">=1.14.40"
},
"devDependencies": {
"@opencode-ai/plugin": "^1.14.40"
}
}