-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
118 lines (118 loc) · 3.21 KB
/
Copy pathpackage.json
File metadata and controls
118 lines (118 loc) · 3.21 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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
{
"name": "@nguyenthdat/opencode-manager",
"version": "0.4.1",
"description": "Project-scoped OpenCode TUI manager for MCPs, plugins, rules, standalone agents, agent teams, and skills.",
"keywords": [
"agent-skills",
"ai-agents",
"agent-manager",
"agent-teams",
"bun",
"code-review",
"debugging",
"developer-tools",
"opencode",
"mcp",
"mcp-manager",
"mcp-registry",
"model-context-protocol",
"opencode-plugin",
"plugin-manager",
"registry",
"rule-manager",
"rules",
"skill-manager",
"skill-registry",
"skills",
"software-architecture",
"tui",
"typescript"
],
"repository": {
"type": "git",
"url": "git+https://github.com/nguyenthdat/opencode-manager.git"
},
"homepage": "https://github.com/nguyenthdat/opencode-manager#readme",
"bugs": {
"url": "https://github.com/nguyenthdat/opencode-manager/issues"
},
"author": "Dat Nguyen",
"license": "MIT",
"type": "module",
"packageManager": "bun@1.3.14",
"main": "./dist/manager.js",
"types": "./dist/manager.d.ts",
"exports": {
".": {
"types": "./dist/manager.d.ts",
"import": "./dist/manager.js"
},
"./manager": {
"types": "./dist/manager.d.ts",
"import": "./dist/manager.js"
},
"./tui": {
"types": "./dist/tui.d.ts",
"import": "./dist/tui.js"
}
},
"files": [
"dist/",
"registry/",
"README.md"
],
"engines": {
"bun": ">=1.3.0",
"opencode": ">=1.18.4"
},
"scripts": {
"build": "tsc",
"clean": "rm -rf dist",
"format": "prettier --write \"src/**/*.ts\" \"scripts/**/*.ts\" \"test/**/*.ts\" \"*.json\" \".github/**/*.{yml,yaml}\" \"registry/catalog.jsonc\" \"README.md\" \"docs/**/*.md\"",
"format:check": "prettier --check \"src/**/*.ts\" \"scripts/**/*.ts\" \"test/**/*.ts\" \"*.json\" \".github/**/*.{yml,yaml}\" \"registry/catalog.jsonc\" \"README.md\" \"docs/**/*.md\"",
"format:staged": "lint-staged",
"prepare": "husky",
"registry:update": "bun scripts/update-skill-source-revisions.ts",
"registry:update:check": "bun scripts/update-skill-source-revisions.ts --check",
"registry:validate": "bun scripts/validate-skill-sources.ts",
"test": "bun test",
"typecheck": "tsc --noEmit && tsc -p tsconfig.test.json"
},
"dependencies": {
"jsonc-parser": "^3.3.1",
"yaml": "^2.8.0"
},
"peerDependencies": {
"@opencode-ai/plugin": ">=1.18.4"
},
"peerDependenciesMeta": {
"@opencode-ai/plugin": {
"optional": true
}
},
"publishConfig": {
"access": "public"
},
"overrides": {
"@babel/core": "7.29.7",
"brace-expansion": "5.0.9"
},
"devDependencies": {
"@opencode-ai/plugin": "1.18.4",
"@opentui/core": "^0.4.5",
"@opentui/keymap": "^0.4.5",
"@opentui/solid": "^0.4.5",
"@types/bun": "latest",
"husky": "9.1.7",
"lint-staged": "^17.2.0",
"prettier": "3.8.3",
"typescript": "^5.9.2"
},
"lint-staged": {
"{src,scripts,test}/**/*.{ts,tsx,js,jsx,mjs,cjs}": "prettier --write",
"*.json": "prettier --write",
".github/**/*.{yml,yaml}": "prettier --write",
"registry/catalog.jsonc": "prettier --write",
"{README.md,docs/**/*.md}": "prettier --write"
}
}