forked from 0xCaso/opencode-cmux
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.19 KB
/
package.json
File metadata and controls
46 lines (46 loc) · 1.19 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
{
"$schema": "https://json.schemastore.org/package.json",
"name": "@manaflow-ai/opencode-cmux",
"version": "0.2.0",
"description": "OpenCode plugin that bridges OpenCode events to cmux notifications and sidebar metadata",
"type": "module",
"main": "dist/index.js",
"exports": {
".": {
"import": "./dist/index.js",
"types": "./dist/index.d.ts"
}
},
"types": "dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"build": "tsc --emitDeclarationOnly && bun build src/index.ts --outdir dist --target node",
"typecheck": "tsc --noEmit",
"prepublishOnly": "bun run typecheck && bun run build"
},
"keywords": [
"opencode",
"opencode-plugin",
"cmux"
],
"author": "Matteo Casonato",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/manaflow-ai/opencode-cmux.git"
},
"homepage": "https://github.com/manaflow-ai/opencode-cmux#readme",
"bugs": {
"url": "https://github.com/manaflow-ai/opencode-cmux/issues"
},
"peerDependencies": {
"@opencode-ai/plugin": ">=1.0.0"
},
"devDependencies": {
"@opencode-ai/plugin": "^1.2.15",
"@types/node": "^25.3.1",
"typescript": "^5.9.3"
}
}