-
Notifications
You must be signed in to change notification settings - Fork 29
Expand file tree
/
Copy pathdeno.json
More file actions
42 lines (42 loc) · 1.12 KB
/
deno.json
File metadata and controls
42 lines (42 loc) · 1.12 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
38
39
40
41
42
{
"name": "@wyattjoh/jmap-mcp",
"version": "0.6.4",
"license": "MIT",
"exports": "./src/mod.ts",
"publish": {
"include": [
"LICENSE",
"README.md",
"mod.ts",
"src/**/*.ts",
"deno.json"
]
},
"tasks": {
"start": "deno run --allow-env --allow-net src/mod.ts",
"watch": "deno run --allow-env --allow-net --watch src/mod.ts",
"hooks:install": "deno run --allow-read=deno.json,.git/hooks/ --allow-write=.git/hooks/ jsr:@hongminhee/deno-task-hooks",
"hooks:pre-commit": "deno check && deno fmt --check && deno lint",
"hooks:pre-push": "deno publish --dry-run --allow-dirty",
"test": "deno test --allow-env --allow-net"
},
"imports": {
"@modelcontextprotocol/sdk": "npm:@modelcontextprotocol/sdk@^1.29.0",
"zod": "npm:zod@^4.3.6",
"jmap-jam": "npm:jmap-jam@^0.13.1",
"jmap-rfc-types": "npm:jmap-rfc-types@^0.1.2",
"@std/assert": "jsr:@std/assert@^1.0.19"
},
"fmt": {
"exclude": [
"CHANGELOG.md"
]
},
"exclude": [
".repositories"
],
"repository": {
"type": "git",
"url": "https://github.com/wyattjoh/jmap-mcp.git"
}
}