-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 1.01 KB
/
Copy pathpackage.json
File metadata and controls
37 lines (37 loc) · 1.01 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
{
"name": "carry",
"version": "0.1.0",
"description": "A tiny remote MCP server that carries a context pack (voice rules, system facts, anything) between your Claude surfaces. Push from Claude Code at your desk; read from Claude mobile on the go.",
"license": "Apache-2.0",
"type": "module",
"engines": {
"node": ">=20"
},
"bin": {
"carry": "./dist/cli.js"
},
"main": "./dist/index.js",
"scripts": {
"dev": "tsx watch src/index.ts",
"build": "tsc -p tsconfig.json",
"start": "node dist/index.js",
"typecheck": "tsc -p tsconfig.json --noEmit",
"test": "vitest run",
"smoke": "tsx scripts/smoke.ts",
"demo": "tsx scripts/demo.ts"
},
"dependencies": {
"@libsql/client": "^0.14.0",
"@modelcontextprotocol/sdk": "^1.12.0",
"express": "^4.21.2",
"jose": "^5.10.0",
"zod": "^3.24.1"
},
"devDependencies": {
"@types/express": "^4.17.21",
"@types/node": "^22.10.0",
"tsx": "^4.19.2",
"typescript": "^5.7.2",
"vitest": "^2.1.8"
}
}