-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdeno.json
More file actions
32 lines (32 loc) · 1.81 KB
/
deno.json
File metadata and controls
32 lines (32 loc) · 1.81 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
{
"version": "0.1.8",
"name": "@contextvm/proxy-cli",
"description": " A command-line interface tool designed as a wrapper around @contextvm/ts-sdk's NostrMCPProxy, to configure it and run it. It allows you to connect to MCP servers using the ContextVM protocol through the nostr network, and use it as local mcp server in any mcp client.",
"homepage": "https://github.com/contextvm/proxy-cli",
"tasks": {
"dev": "deno run --watch --allow-net --allow-read --allow-write --allow-env main.ts",
"start": "deno run --allow-net --allow-read --allow-write --allow-env main.ts",
"compile": "deno compile --allow-net --allow-read --allow-write --allow-env --output dist/proxy-cli main.ts",
"compile:linux": "deno compile --allow-run --allow-read --allow-write --allow-net --allow-env --target x86_64-unknown-linux-gnu --output dist/proxy-cli-linux main.ts",
"compile:macos": "deno compile --allow-run --allow-read --allow-write --allow-net --allow-env --target x86_64-apple-darwin --output dist/proxy-cli-macos main.ts",
"compile:windows": "deno compile --allow-run --allow-read --allow-write --allow-net --allow-env --target x86_64-pc-windows-msvc --output dist/proxy-cli-windows.exe main.ts",
"test": "deno test --allow-net --allow-read --allow-write --allow-env --allow-sys"
},
"imports": {
"@contextvm/sdk": "npm:@contextvm/sdk@^0.2.5",
"@modelcontextprotocol/sdk": "npm:@modelcontextprotocol/sdk@^1.25.3",
"@std/assert": "jsr:@std/assert@^1.0.17",
"@std/cli": "jsr:@std/cli@^1.0.26",
"@std/collections": "jsr:@std/collections@^1.1.4",
"@types/js-yaml": "npm:@types/js-yaml@^4.0.9",
"js-yaml": "npm:js-yaml@^4.1.1",
"zod": "npm:zod@^4.3.6"
},
"fmt": {
"proseWrap": "always",
"exclude": ["*.md"],
"semiColons": true,
"singleQuote": true
},
"exports": "./main.ts"
}