-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 1.58 KB
/
Copy pathpackage.json
File metadata and controls
62 lines (62 loc) · 1.58 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
61
62
{
"name": "opencode-owl",
"version": "1.4.0",
"description": "Agent Memory System + HarnessOps layer for OpenCode — observability-driven harness evolution (AHE)",
"author": "AugustChaoTW",
"license": "MIT",
"type": "module",
"main": "dist/index.js",
"exports": {
".": "./dist/index.js",
"./tui": "./dist/tui.js"
},
"bin": {
"opencode-owl-mcp": "./dist/mcp-entry.js",
"opencode-owl-mcp-stdio": "./dist/mcp-stdio.js"
},
"files": [
"dist/",
"README.md",
"install.sh",
"install-claude.sh"
],
"scripts": {
"build": "bun build src/index.ts src/mcp-server.ts src/mcp-entry.ts src/mcp-stdio.ts src/tui.ts --outdir dist --target node",
"dev": "bun build src/index.ts --outdir dist --target node --watch",
"install:plugin": "./install.sh",
"mcp": "bun run dist/mcp-entry.js",
"mcp:stdio": "bun run dist/mcp-stdio.js",
"install:claude": "./install-claude.sh",
"install:claude-global": "./install-claude.sh --global",
"prepublishOnly": "bun run build",
"clean": "rm -rf dist node_modules"
},
"dependencies": {
"@opencode-ai/plugin": "^1.3.0",
"sqlite-vec": "^0.1.9"
},
"devDependencies": {
"@opentui/solid": "^0.1.97",
"@types/node": "^22.13.9",
"bun-types": "^1.2.4",
"typescript": "^5.8.2"
},
"keywords": [
"opencode",
"plugin",
"memory",
"agent",
"ai",
"llm",
"sqlite-vec",
"mcp"
],
"repository": {
"type": "git",
"url": "https://github.com/DevSecOpsLab-CSIE-NPU/opencode-owl"
},
"engines": {
"node": ">=18.0.0",
"bun": ">=1.0.0"
}
}