-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.26 KB
/
package.json
File metadata and controls
52 lines (52 loc) · 1.26 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": "opencode-agents",
"version": "8.3.1",
"description": "Curated AI agent registry for OpenCode — install expert agents in seconds",
"license": "MIT",
"author": "dmicheneau",
"homepage": "https://github.com/dmicheneau/opencode-template-agent#readme",
"bugs": {
"url": "https://github.com/dmicheneau/opencode-template-agent/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/dmicheneau/opencode-template-agent"
},
"main": "./plugin/index.ts",
"exports": {
".": "./plugin/index.ts"
},
"bin": {
"opencode-agents": "./bin/cli.mjs"
},
"type": "module",
"files": [
"bin/",
"src/",
"manifest.json",
"plugin/"
],
"engines": {
"node": ">=20"
},
"keywords": [
"opencode",
"ai-agents",
"cli",
"developer-tools",
"code-templates"
],
"scripts": {
"test": "node --test tests/recommender.test.mjs tests/tui.test.mjs tests/cli.test.mjs",
"lint": "node --check bin/cli.mjs src/*.mjs src/tui/*.mjs",
"prepublishOnly": "npm test",
"test:plugin": "bun test tests/plugin/",
"test:all": "npm test && bun test tests/plugin/"
},
"devDependencies": {
"@opencode-ai/plugin": "1.2.5"
},
"peerDependencies": {
"@opencode-ai/plugin": ">=1.1.0"
}
}