forked from qforge-dev/opencode-architect
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.5 KB
/
Copy pathpackage.json
File metadata and controls
60 lines (60 loc) · 1.5 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
53
54
55
56
57
58
59
60
{
"name": "opencode-architect",
"version": "0.4.0",
"description": "OpenCode plugin and CLI with ten specialist agents for agent skills, slash commands, custom tools, plugins, and MCP server integration",
"keywords": [
"opencode",
"opencode-plugin",
"opencode-agents",
"agent-skills",
"ai-agents",
"slash-commands",
"mcp",
"mcp-server",
"coding-agent",
"bun"
],
"license": "MIT",
"private": false,
"type": "module",
"module": "index.ts",
"bin": {
"opencode-architect": "cli.ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Expert-Vision-Software/opencode-architect.git"
},
"homepage": "https://github.com/Expert-Vision-Software/opencode-architect#readme",
"publisher": "Expert Vision Software",
"author": "Expert Vision Support <support@expertvision.software>",
"bugs": {
"url": "https://github.com/Expert-Vision-Software/opencode-architect/issues",
"email": "support@expertvision.software"
},
"scripts": {
"check": "tsc --noEmit",
"test": "bun test",
"release": "npm version patch && npm publish && git push --follow-tags"
},
"publishConfig": {
"access": "public"
},
"files": [
"index.ts",
"agent-loader.ts",
"cli.ts",
"installer.ts",
"assets"
],
"dependencies": {
"yaml": "^2.7.1",
"@opencode-ai/plugin": "*"
},
"devDependencies": {
"@opencode-ai/sdk": "latest",
"@types/bun": "latest",
"@types/node": "latest",
"typescript": "latest"
}
}