-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdeno.jsonc
More file actions
70 lines (70 loc) · 2.51 KB
/
deno.jsonc
File metadata and controls
70 lines (70 loc) · 2.51 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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
{
"name": "@beyondbetter/bb-applescript-mcp-server",
"version": "0.1.5",
"description": "MCP server interact with macOS applications through AppleScript",
"license": "MIT",
"copyright": "2025 - Beyond Better <charlie@beyondbetter.app>",
"exports": {
".": "./server/main.ts"
},
"tasks": {
"start": "deno run --allow-all --unstable-kv ./server/main.ts",
"dev": "deno run --allow-all --unstable-kv --watch ./server/main.ts",
"test": "deno test --allow-all ./server/tests/",
"test:all": "deno test --allow-all ./server/tests/",
"test:file": "deno test --allow-all",
"mcp-inspector": "npx @modelcontextprotocol/inspector",
"check": "deno check ./server/main.ts",
"check:all": "deno check ./server/main.ts ./server/tests/**/*.ts",
"update-deps": "deno cache ./server/main.ts",
"lint": "deno lint .",
"fmt": "deno fmt ./server/ ./server/tests/ ",
"build:jsr": "deno run --allow-read --allow-write scripts/inline-applescripts.ts",
"tool:check": "deno check ./server/**/*.ts",
"tool:check:all": "deno check ./server/**/*.ts ./server/tests/**/*.ts",
"tool:test": "deno test --allow-all --unstable-kv --coverage=coverage ./server/tests/",
"tool:test:file": "deno test --allow-all --unstable-kv --coverage=coverage ",
"tool:format": "deno fmt ./server/ ./server/tests/"
},
// use `importMap` for local testing
//"importMap": "./import_map.json",
// use `imports` in real app
"imports": {
"@beyondbetter/bb-mcp-server": "jsr:@beyondbetter/bb-mcp-server@^0.1.18",
"@std/assert": "jsr:@std/assert@^1.0.0",
"@std/encoding/base64": "jsr:@std/encoding@^1.0.0/base64",
"@std/fs/walk": "jsr:@std/fs@^1.0.0/walk",
"@std/path": "jsr:@std/path@^1.0.0",
"mcp": "npm:@modelcontextprotocol/sdk@1.18.2",
"mcp/types.js": "npm:@modelcontextprotocol/sdk@1.18.2/types.js",
"zod": "npm:zod@^3.22.4"
},
"compilerOptions": {
"lib": ["deno.window", "deno.unstable"],
"strict": true,
"exactOptionalPropertyTypes": true,
"noImplicitReturns": true,
"noUnusedLocals": true,
"noFallthroughCasesInSwitch": true,
"noUncheckedIndexedAccess": true,
"allowUnreachableCode": false,
"allowUnusedLabels": false
},
"fmt": {
"useTabs": false,
"lineWidth": 120,
"indentWidth": 2,
"semiColons": true,
"singleQuote": true,
"proseWrap": "preserve"
},
"lint": {
"include": ["server", "tests/"],
"exclude": ["coverage/"]
},
"publish": {
"exclude": [
"!server/src/plugins/**/scripts/index.ts"
]
}
}