-
-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathdeno.json
More file actions
36 lines (36 loc) · 1.09 KB
/
Copy pathdeno.json
File metadata and controls
36 lines (36 loc) · 1.09 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
{
"$id": "https://jsr.io/schema/config-file.v1.json",
"$schema": "http://json-schema.org/draft-07/schema",
"name": "@yamanoku/baseline-mcp-server",
"description": "Model Context Protocol server that provides support status for Web Platform APIs",
"version": "0.7.0",
"license": "MIT",
"exports": "./baseline-mcp-server.ts",
"tasks": {
"dev": "deno run --watch baseline-mcp-server.ts",
"test": "deno test --allow-net=api.webstatus.dev",
"lint": "deno lint",
"fmt": "deno fmt"
},
"imports": {
"@modelcontextprotocol/client": "npm:@modelcontextprotocol/client@^2.0.0",
"@modelcontextprotocol/server": "npm:@modelcontextprotocol/server@^2.0.0",
"@modelcontextprotocol/server/stdio": "npm:@modelcontextprotocol/server@^2.0.0/stdio",
"@std/assert": "jsr:@std/assert@^1.0.19",
"zod": "npm:zod@^4.4.3"
},
"publish": {
"include": [
"baseline-mcp-server.ts",
"constants.ts",
"types.ts",
"tools/**/*.ts",
"screenshot_claude_desktop.png",
"README.md",
"LICENSE"
],
"exclude": [
"tools/**/*.test.ts"
]
}
}