-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdeno.json
More file actions
37 lines (37 loc) · 1.24 KB
/
deno.json
File metadata and controls
37 lines (37 loc) · 1.24 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
33
34
35
36
37
{
"$schema": "https://raw.githubusercontent.com/denoland/deno/refs/heads/main/cli/schemas/config-file.v1.json",
"tasks": {
"dev": "deno run --env-file --watch --allow-env --allow-read --allow-sys --allow-net ./src/server.ts",
"start": "deno run --env-file ./src/server.ts",
"test": "deno run --env-file --allow-env --allow-net test.ts",
"mock": "deno run --env-file --allow-env --allow-net test.ts"
},
"imports": {
"@modelcontextprotocol/sdk": "npm:@modelcontextprotocol/sdk@^1.29.0",
"ai": "npm:ai@^6.0.193",
"arkenv": "npm:arkenv@^0.11.1",
"arktype": "npm:arktype@^2.2.0",
"hono": "jsr:@hono/hono@^4.12.23"
},
"fmt": {
"useTabs": false,
"lineWidth": 80,
"indentWidth": 4,
"semiColons": false,
"singleQuote": false,
"proseWrap": "preserve",
"trailingCommas": "never",
"include": ["."],
"exclude": []
},
"compilerOptions": {
"strict": true,
"module": "preserve",
"moduleResolution": "bundler",
"lib": ["esnext", "DOM", "deno.ns"],
"types": ["node"],
"skipLibCheck": true,
"jsx": "react-jsx",
"jsxImportSource": "hono/jsx"
}
}