-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathdeno.json
More file actions
32 lines (32 loc) · 1.63 KB
/
Copy pathdeno.json
File metadata and controls
32 lines (32 loc) · 1.63 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.25",
"name": "@contextvm/gateway-cli",
"description": "A CLI tool for managing NostrMCPGateway instances.",
"homepage": "https://github.com/contextvm/gateway-cli",
"tasks": {
"dev": "deno run -A --watch main.ts",
"start": "deno run --allow-run --allow-env --allow-net --allow-read --allow-write --allow-sys main.ts",
"test": "deno test --allow-read --allow-env --allow-write --allow-sys",
"compile": "deno compile --allow-net --allow-read --allow-write --allow-env --allow-sys --output dist/gateway-cli main.ts",
"compile:linux": "deno compile --allow-run --allow-read --allow-write --allow-net --allow-env --allow-sys --target x86_64-unknown-linux-gnu --output dist/gateway-cli-linux main.ts",
"compile:macos": "deno compile --allow-run --allow-read --allow-write --allow-net --allow-env --allow-sys --target x86_64-apple-darwin --output dist/gateway-cli-macos main.ts",
"compile:windows": "deno compile --allow-run --allow-read --allow-write --allow-net --allow-env --allow-sys --target x86_64-pc-windows-msvc --output dist/gateway-cli-windows.exe main.ts"
},
"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"
}