-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdeno.json
More file actions
33 lines (33 loc) · 952 Bytes
/
Copy pathdeno.json
File metadata and controls
33 lines (33 loc) · 952 Bytes
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
33
{
"nodeModulesDir": "none",
"imports": {
"@modelcontextprotocol/sdk/": "npm:/@modelcontextprotocol/sdk@1.29.0/",
"zod": "npm:zod@^4"
},
"tasks": {
"dev": "deno run --watch --allow-env --allow-net --allow-write main.ts",
"start": "deno run --allow-env --allow-net --allow-write main.ts",
"inspect": "deno run -A npm:@modelcontextprotocol/inspector deno run --allow-env --allow-net --allow-write main.ts",
"check": "deno check main.ts build.ts",
"fmt": "deno fmt",
"lint": "deno lint",
"build": "deno run -A build.ts",
"compile": "deno compile --allow-env --allow-net --allow-write -o ariake-mcp main.ts"
},
"compilerOptions": {
"strict": true,
"lib": ["deno.ns", "deno.window", "esnext"]
},
"fmt": {
"useTabs": false,
"lineWidth": 100,
"indentWidth": 2,
"semiColons": true,
"singleQuote": false
},
"lint": {
"rules": {
"tags": ["recommended"]
}
}
}