-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdeno.jsonc
28 lines (28 loc) · 910 Bytes
/
deno.jsonc
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
{
"version": "0.1.0",
"tasks": {
"dev": "deno run -A scripts/dev.ts",
"format": "deno fmt",
"lint": "deno lint",
"build": "deno run --allow-read --allow-net --allow-env --allow-run scripts/build.ts",
"inspector": "npx @modelcontextprotocol/inspector build/mcp-server-drupal",
"release": "deno run -A npm:release-it"
},
"compilerOptions": {
"strict": true,
"noFallthroughCasesInSwitch": true,
"noUnusedLocals": true,
"noUnusedParameters": true,
"noPropertyAccessFromIndexSignature": true
},
"imports": {
"@modelcontextprotocol/sdk": "npm:@modelcontextprotocol/sdk@^1.0.4",
"@std/assert": "jsr:@std/assert@1",
"@std/cli": "jsr:@std/cli@^1.0.9",
"@std/dotenv": "jsr:@std/dotenv@^0.225.3",
"@std/fmt": "jsr:@std/fmt@^1.0.3",
"@std/fs": "jsr:@std/fs@^1.0.8",
"@std/path": "jsr:@std/path@^1.0.8",
"zod": "npm:zod@^3.24.1"
}
}