-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
68 lines (68 loc) · 1.59 KB
/
Copy pathpackage.json
File metadata and controls
68 lines (68 loc) · 1.59 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
{
"name": "codex-relink",
"version": "0.0.7",
"description": "Find missing Codex CLI chats for the current directory and print resume commands.",
"type": "module",
"repository": {
"type": "git",
"url": "git+https://github.com/WaryaWayne/codex-relink.git"
},
"bugs": {
"url": "https://github.com/WaryaWayne/codex-relink/issues"
},
"homepage": "https://github.com/WaryaWayne/codex-relink",
"bin": {
"codex-relink": "dist/cli.js"
},
"main": "./dist/cli.js",
"files": [
"dist",
"README.md",
"codex-relink-cli-twitter-image-warya-wayne.png"
],
"scripts": {
"publish:npm": "npm publish --access public --ignore-scripts",
"build": "tsgo -p tsconfig.json",
"test": "vitest run",
"typecheck": "tsgo --noEmit",
"prepare": "effect-tsgo patch"
},
"keywords": [
"codex",
"codex-cli",
"openai-codex",
"cli",
"codex-chat",
"codex-session",
"codex-resume",
"resume",
"missing-chats",
"lost-chats",
"chat-recovery",
"session-recovery",
"sqlite"
],
"author": "Warya Wayne",
"license": "MIT",
"engines": {
"node": ">=20"
},
"dependencies": {
"@effect/platform-node": "4.0.0-beta.66",
"@effect/sql-sqlite-node": "4.0.0-beta.66",
"effect": "4.0.0-beta.66"
},
"devDependencies": {
"@types/node": "^24.10.1",
"@typescript/native-preview": "7.0.0-dev.20260515.1",
"vitest": "^4.0.14",
"@effect/tsgo": "0.7.2",
"@effect/vitest": "4.0.0-beta.66"
},
"pnpm": {
"onlyBuiltDependencies": [
"better-sqlite3"
]
},
"packageManager": "pnpm@10.33.0"
}