-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 919 Bytes
/
Copy pathpackage.json
File metadata and controls
43 lines (43 loc) · 919 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
43
{
"name": "opencode-session-migrate",
"version": "0.2.1",
"type": "module",
"license": "MIT",
"description": "opencode TUI plugin to migrate (re-parent) sessions across projects and rescue orphaned sessions",
"repository": {
"type": "git",
"url": "https://github.com/sim590/opencode-session-migrate"
},
"exports": {
"./tui": "./src/index.tsx"
},
"files": [
"src/index.tsx"
],
"engines": {
"opencode": "^1.18.0"
},
"keywords": [
"opencode",
"opencode-plugin",
"tui",
"session",
"migration",
"orphan"
],
"scripts": {
"typecheck": "tsc --noEmit",
"test": "bun test"
},
"dependencies": {
"@opencode-ai/plugin": ">=1.18.0",
"@opentui/core": ">=0.4.5",
"@opentui/solid": ">=0.4.5",
"solid-js": "1.9.12",
"xdg-basedir": "^5.1.0"
},
"devDependencies": {
"@types/bun": "latest",
"typescript": "^5.7.0"
}
}