-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathdeno.json
More file actions
45 lines (45 loc) · 1.77 KB
/
deno.json
File metadata and controls
45 lines (45 loc) · 1.77 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
{
"name": "@mcpc/code-runner-mcp",
"version": "0.1.20",
"nodeModulesDir": "auto",
"description": "Run Javascript/Python code in a secure sandbox, with support for importing **any package**! 🚀",
"repository": {
"type": "git",
"url": "https://github.com/mcpc-tech/code-runner-mcp"
},
"homepage": "https://github.com/mcpc-tech/code-runner-mcp",
"bugs": {
"url": "https://github.com/mcpc-tech/code-runner-mcp/issues"
},
"tasks": {
"server:watch": "deno -A --watch ./src/server.ts",
"server:compile": "echo no need to compile",
"cli": "deno run --allow-all ./src/cli.ts",
"test": "deno run --allow-all tests/run-tests.ts",
"test:basic": "deno run --allow-all tests/run-basic-tests.ts",
"test:watch": "deno run --allow-all tests/run-tests.ts --watch",
"test:coverage": "deno run --allow-all tests/run-tests.ts --coverage",
"test:js": "deno run --allow-all tests/run-tests.ts --filter 'JavaScript'",
"test:py": "deno run --allow-all tests/run-tests.ts --filter 'Python'",
"test:integration": "deno run --allow-all tests/run-tests.ts --filter 'Integration'"
},
"imports": {
"@hono/zod-openapi": "npm:@hono/zod-openapi@^0.19.2",
"@mcpc/core": "jsr:@mcpc/core@^0.1.0",
"@mcpc-tech/handle-sandbox": "npm:@mcpc-tech/handle-sandbox@^0.0.11",
"@modelcontextprotocol/sdk": "npm:@modelcontextprotocol/sdk@^1.8.0",
"@std/cli": "jsr:@std/cli@^1.0.0",
"deno": "npm:deno@^2.6.7",
"env-paths": "npm:env-paths@^4.0.0",
"json-schema-to-zod": "npm:json-schema-to-zod@^2.6.1",
"pyodide": "npm:pyodide@^0.29.0",
"zod": "npm:zod@^3.24.2"
},
"exports": {
".": "./mod.ts",
"./server": "./src/server.ts",
"./bin": "./src/stdio.server.ts",
"./cli": "./src/cli.ts"
},
"allowScripts": ["npm:deno"]
}