opencode-sessions-explorer 0.1.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +45 -0
- package/LICENSE +21 -0
- package/README.md +304 -0
- package/dist/bin/bulk-export.js +779 -0
- package/dist/bin/check-deps.js +948 -0
- package/dist/bin/dedupe-export.js +798 -0
- package/dist/plugin.js +15656 -0
- package/package.json +74 -0
- package/types/plugin.d.ts +4 -0
package/package.json
ADDED
|
@@ -0,0 +1,74 @@
|
|
|
1
|
+
{
|
|
2
|
+
"$schema": "https://json.schemastore.org/package.json",
|
|
3
|
+
"name": "opencode-sessions-explorer",
|
|
4
|
+
"version": "0.1.0",
|
|
5
|
+
"description": "OpenCode plugin: access to every prior OpenCode session on this machine — recall, search/grep, and historical analysis via 18 LLM-discoverable tools (17 read-only plus one write, unarchive-session).",
|
|
6
|
+
"keywords": [
|
|
7
|
+
"opencode",
|
|
8
|
+
"opencode-plugin",
|
|
9
|
+
"sessions",
|
|
10
|
+
"history",
|
|
11
|
+
"search",
|
|
12
|
+
"ck",
|
|
13
|
+
"sqlite"
|
|
14
|
+
],
|
|
15
|
+
"author": "Aleksandr Efremenkov <aleksandr.efremenkov@bolt.eu>",
|
|
16
|
+
"license": "MIT",
|
|
17
|
+
"homepage": "https://github.com/iamironz/opencode-sessions-explorer",
|
|
18
|
+
"repository": {
|
|
19
|
+
"type": "git",
|
|
20
|
+
"url": "git+https://github.com/iamironz/opencode-sessions-explorer.git"
|
|
21
|
+
},
|
|
22
|
+
"bugs": {
|
|
23
|
+
"url": "https://github.com/iamironz/opencode-sessions-explorer/issues"
|
|
24
|
+
},
|
|
25
|
+
"type": "module",
|
|
26
|
+
"main": "./dist/plugin.js",
|
|
27
|
+
"types": "./types/plugin.d.ts",
|
|
28
|
+
"exports": {
|
|
29
|
+
".": {
|
|
30
|
+
"types": "./types/plugin.d.ts",
|
|
31
|
+
"import": "./dist/plugin.js"
|
|
32
|
+
}
|
|
33
|
+
},
|
|
34
|
+
"files": [
|
|
35
|
+
"dist/",
|
|
36
|
+
"types/",
|
|
37
|
+
"README.md",
|
|
38
|
+
"LICENSE",
|
|
39
|
+
"CHANGELOG.md"
|
|
40
|
+
],
|
|
41
|
+
"bin": {
|
|
42
|
+
"opencode-sessions-explorer-bulk-export": "./dist/bin/bulk-export.js",
|
|
43
|
+
"opencode-sessions-explorer-dedupe-export": "./dist/bin/dedupe-export.js",
|
|
44
|
+
"opencode-sessions-explorer-check-deps": "./dist/bin/check-deps.js"
|
|
45
|
+
},
|
|
46
|
+
"scripts": {
|
|
47
|
+
"build": "bun run clean && bun build src/plugin.ts --target=bun --format=esm --outdir=dist && bun build src/bin/bulk-export.ts src/bin/dedupe-export.ts src/bin/check-deps.ts --target=bun --format=esm --outdir=dist/bin",
|
|
48
|
+
"typecheck": "tsc -p tsconfig.json --noEmit",
|
|
49
|
+
"test": "bun test tests/",
|
|
50
|
+
"test:live": "OPENCODE_SESSIONS_EXPLORER_LIVE=1 bun test tests/",
|
|
51
|
+
"clean": "rm -rf dist/",
|
|
52
|
+
"prepack": "bun run build",
|
|
53
|
+
"pack:dry": "npm pack --dry-run"
|
|
54
|
+
},
|
|
55
|
+
"engines": {
|
|
56
|
+
"bun": ">=1.0.0"
|
|
57
|
+
},
|
|
58
|
+
"packageManager": "bun@1.3.10",
|
|
59
|
+
"publishConfig": {
|
|
60
|
+
"access": "public",
|
|
61
|
+
"provenance": true
|
|
62
|
+
},
|
|
63
|
+
"peerDependencies": {
|
|
64
|
+
"@opencode-ai/plugin": ">=1.15.0"
|
|
65
|
+
},
|
|
66
|
+
"dependencies": {
|
|
67
|
+
"zod": "^4.0.0"
|
|
68
|
+
},
|
|
69
|
+
"devDependencies": {
|
|
70
|
+
"@opencode-ai/plugin": "1.15.10",
|
|
71
|
+
"@types/bun": "latest",
|
|
72
|
+
"typescript": "^5.4.0"
|
|
73
|
+
}
|
|
74
|
+
}
|