-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
77 lines (77 loc) · 2.4 KB
/
Copy pathpackage.json
File metadata and controls
77 lines (77 loc) · 2.4 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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
{
"$schema": "https://json.schemastore.org/package.json",
"name": "opencode-sessions-explorer",
"version": "0.1.4",
"description": "OpenCode plugin for recall and analysis of past OpenCode sessions: search, grep, and cost/usage insights across your session history via 18 LLM tools (17 read-only plus one write, unarchive-session).",
"keywords": [
"opencode",
"opencode-plugin",
"sessions",
"history",
"search",
"ck",
"sqlite"
],
"author": "Aleksandr Efremenkov <aleksandr.efremenkov@bolt.eu>",
"license": "MIT",
"homepage": "https://github.com/iamironz/opencode-sessions-explorer",
"repository": {
"type": "git",
"url": "git+https://github.com/iamironz/opencode-sessions-explorer.git"
},
"bugs": {
"url": "https://github.com/iamironz/opencode-sessions-explorer/issues"
},
"type": "module",
"main": "./dist/plugin.js",
"types": "./types/plugin.d.ts",
"exports": {
".": {
"types": "./types/plugin.d.ts",
"import": "./dist/plugin.js"
}
},
"files": [
"dist/",
"types/",
"docs/",
"README.md",
"LICENSE",
"CHANGELOG.md"
],
"bin": {
"opencode-sessions-explorer-bulk-export": "./dist/bin/bulk-export.js",
"opencode-sessions-explorer-dedupe-export": "./dist/bin/dedupe-export.js",
"opencode-sessions-explorer-check-deps": "./dist/bin/check-deps.js",
"opencode-sessions-explorer-mcp": "./dist/mcp.js"
},
"scripts": {
"build": "bun run clean && bun build src/plugin.ts src/lib/export-reconcile-worker.ts --target=bun --format=esm --outdir=dist && bun build src/mcp.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",
"typecheck": "tsc -p tsconfig.json --noEmit",
"test": "bun test tests/",
"test:live": "OPENCODE_SESSIONS_EXPLORER_LIVE=1 bun test tests/",
"clean": "rm -rf dist/",
"prepack": "bun run build",
"pack:dry": "npm pack --dry-run"
},
"engines": {
"bun": ">=1.0.0"
},
"packageManager": "bun@1.3.14",
"publishConfig": {
"access": "public",
"provenance": true
},
"peerDependencies": {
"@opencode-ai/plugin": ">=1.15.0"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.29.0",
"zod": "^4.0.0"
},
"devDependencies": {
"@opencode-ai/plugin": "1.18.16",
"@types/bun": "latest",
"typescript": "^6.0.3"
}
}