-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 1.65 KB
/
package.json
File metadata and controls
61 lines (61 loc) · 1.65 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
{
"name": "@devwellington/opencode-context-plugin",
"version": "1.8.2",
"description": "OpenCode plugin that saves session context to .opencode/context-session/ after compaction and session end",
"main": "index.js",
"type": "module",
"keywords": [
"opencode",
"opencode-plugin",
"context",
"session",
"memory",
"ai",
"productivity"
],
"author": "Wellington Ribeiro",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/DevWellington/opencode-context-plugin.git"
},
"peerDependencies": {
"@opencode-ai/plugin": ">=1.4.0"
},
"engines": {
"node": ">=18.0.0"
},
"dependencies": {
"@aws-sdk/client-s3": "^3.1053.0",
"@google-cloud/storage": "^7.19.0",
"gray-matter": "^4.0.3"
},
"devDependencies": {
"jest": "^29.7.0"
},
"scripts": {
"test": "node --experimental-vm-modules node_modules/jest/bin/jest.js",
"test:watch": "node --experimental-vm-modules node_modules/jest/bin/jest.js --watch",
"test:coverage": "node --experimental-vm-modules node_modules/jest/bin/jest.js --coverage",
"search": "node src/cli/search.js",
"validate": "node scripts/validate-reports.js",
"regenerate": "node scripts/regenerate-summaries.js",
"postinstall": "node scripts/install-agents.js && node scripts/install-obsidian-plugin.js"
},
"bundledPlugins": {
"show-hidden-files": "./.obsidian/plugins/show-hidden-files"
},
"bin": {
"context-search": "src/cli/search.js",
"ocp-agents": "scripts/ocp-agents.js"
},
"files": [
"index.js",
"src/",
"agents/",
"scripts/",
"README.md",
"CHANGELOG.md",
"PUBLISH.md"
]
}