-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 974 Bytes
/
package.json
File metadata and controls
42 lines (42 loc) · 974 Bytes
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
{
"$schema": "https://json.schemastore.org/package.json",
"name": "opencode-convodump",
"version": "0.0.3",
"description": "OpenCode plugin that exports each conversation session to a readable Markdown transcript.",
"module": "index.ts",
"type": "module",
"license": "CC0-1.0",
"repository": {
"type": "git",
"url": "git+https://github.com/intellectronica/opencode-convodump.git"
},
"bugs": {
"url": "https://github.com/intellectronica/opencode-convodump/issues"
},
"homepage": "https://github.com/intellectronica/opencode-convodump#readme",
"keywords": [
"opencode",
"opencode-plugin",
"plugin",
"transcript",
"markdown"
],
"exports": {
".": {
"import": "./index.ts",
"types": "./index.ts"
}
},
"files": [
"index.ts",
".opencode/plugins/convodump.ts",
"README.md",
"LICENSE"
],
"publishConfig": {
"access": "public"
},
"engines": {
"bun": ">=1.1.0"
}
}