-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.28 KB
/
Copy pathpackage.json
File metadata and controls
56 lines (56 loc) · 1.28 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
{
"name": "@mmmjk/context-bridge",
"version": "0.1.2",
"description": "Local-first session bridge to translate, copy, and sync coding-agent histories across Claude Code, Codex, and MCP tools.",
"type": "module",
"homepage": "https://conrad621.github.io/context-bridge",
"repository": {
"type": "git",
"url": "git+https://github.com/conrad621/context-bridge.git"
},
"bugs": {
"url": "https://github.com/conrad621/context-bridge/issues"
},
"bin": {
"context-bridge": "dist/src/cli.js",
"ctxb": "dist/src/cli.js"
},
"files": [
"dist/src/",
"README.md",
"CHANGELOG.md",
"LICENSE"
],
"scripts": {
"build": "tsc -p tsconfig.json",
"test": "npm run build && node scripts/run-tests.mjs",
"test:unit": "npm run build && node --test",
"prepack": "npm run build",
"pack:dry": "npm pack --dry-run",
"publish:dry": "npm publish --dry-run --access public"
},
"keywords": [
"ai",
"agents",
"agent-session",
"session",
"resume",
"translator",
"migration",
"claude-code",
"codex",
"mcp",
"cli"
],
"license": "MIT",
"publishConfig": {
"access": "public"
},
"engines": {
"node": ">=20"
},
"devDependencies": {
"@types/node": "^20.19.0",
"typescript": "^5.8.0"
}
}