Configure Deno project
This commit is contained in:
parent
504aa26761
commit
61a1f4c3cc
4 changed files with 347 additions and 208 deletions
28
deno.json
Normal file
28
deno.json
Normal 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"
|
||||
]
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue