Configure Deno project

This commit is contained in:
Minoru Mizutani 2025-04-29 02:51:21 +09:00
parent 504aa26761
commit 61a1f4c3cc
No known key found for this signature in database
4 changed files with 347 additions and 208 deletions

28
deno.json Normal file
View file

@ -0,0 +1,28 @@
{
"name": "@legalforce/mcp-remote-deno",
"version": "1.0.0",
"description": "Deno wrapper for mcp-use proxy server",
"publish": {
"include": [
"dist/",
"README.md",
"deno.json"
]
},
"tasks": {
"start": "deno run --allow-net --allow-env --allow-read --allow-run --allow-sys --allow-ffi src/proxy.ts",
"dev": "deno run --watch --allow-net --allow-env --allow-read --allow-run --allow-sys --allow-ffi src/proxy.ts"
},
"imports": {
"std/": "https://deno.land/std@0.220.0/",
"node/": "https://deno.land/std@0.220.0/node/",
"@modelcontextprotocol/sdk/": "npm:@modelcontextprotocol/sdk/"
},
"compilerOptions": {
"strict": true,
"lib": [
"ES2022",
"DOM"
]
}
}