-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 1.1 KB
/
Copy pathpackage.json
File metadata and controls
40 lines (40 loc) · 1.1 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
{
"name": "codex-session-sync",
"version": "0.1.0",
"description": "Sync, back up, and manage local OpenAI Codex sessions across machines via WebDAV, with CLI and Web GUI",
"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/index.js",
"type": "module",
"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", "session", "sync", "webdav", "backup"],
"license": "MIT"
}