-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 1.46 KB
/
Copy pathpackage.json
File metadata and controls
64 lines (64 loc) · 1.46 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
{
"name": "codex-session-sync",
"version": "0.1.0",
"description": "Sync, back up, and manage local OpenAI Codex sessions across machines via WebDAV — CLI + local Web GUI. Cold sync, snapshots, session rename/delete, provider merge.",
"author": "shonn",
"repository": {
"type": "git",
"url": "git+https://github.com/shonngithub/codex-session-sync.git"
},
"homepage": "https://github.com/shonngithub/codex-session-sync#readme",
"bugs": {
"url": "https://github.com/shonngithub/codex-session-sync/issues"
},
"bin": {
"cxsync": "./bin/cxsync.js"
},
"main": "src/server.js",
"type": "module",
"files": [
"bin/",
"src/",
"web/",
"docs/",
"config.example.yml",
"README.md",
"README_CN.md",
"LICENSE"
],
"scripts": {
"start": "node bin/cxsync.js serve",
"dev": "node bin/cxsync.js serve --port 7420",
"test": "node --experimental-vm-modules node_modules/jest/bin/jest.js --runInBand"
},
"dependencies": {
"express": "^4.19.2",
"commander": "^12.1.0",
"webdav": "^5.7.1",
"js-yaml": "^4.1.0",
"chokidar": "^3.6.0",
"open": "^10.1.0"
},
"devDependencies": {
"jest": "^29.7.0",
"webdav-server": "^2.6.2"
},
"engines": {
"node": ">=18.0.0"
},
"keywords": [
"codex",
"openai-codex",
"session",
"sync",
"webdav",
"backup",
"restore",
"snapshot",
"cli",
"web-gui",
"nextcloud",
"synology"
],
"license": "MIT"
}