-
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.3 KB
/
Copy pathpackage.json
File metadata and controls
46 lines (46 loc) · 1.3 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
{
"name": "opencode-session-reflection",
"version": "0.2.0",
"description": "OpenCode plugin for qualitative session reflection and open-source workflow opportunity discovery.",
"type": "module",
"main": "./src/index.js",
"exports": {
".": "./src/index.js"
},
"files": [
"src",
"commands",
"README.md",
"LICENSE"
],
"scripts": {
"test": "node --test \"test/*.test.mjs\"",
"check:import": "node -e \"import('./src/index.js').then((m) => { if (typeof m.default !== 'function') throw new Error('default export is not a plugin function'); console.log('plugin import ok') })\"",
"prepublishOnly": "npm test && npm run check:import",
"deploy": "node scripts/deploy.js",
"undeploy": "node scripts/undeploy.js"
},
"keywords": [
"opencode",
"opencode-plugin",
"session-review",
"reflection",
"ai-agents",
"developer-productivity"
],
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/chncaesar/opencode-session-reflection.git"
},
"bugs": {
"url": "https://github.com/chncaesar/opencode-session-reflection/issues"
},
"homepage": "https://github.com/chncaesar/opencode-session-reflection#readme",
"license": "MIT",
"dependencies": {
"@opencode-ai/plugin": "^1.17.11"
},
"engines": {
"node": ">=20"
}
}