-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
69 lines (69 loc) · 1.85 KB
/
Copy pathpackage.json
File metadata and controls
69 lines (69 loc) · 1.85 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
{
"name": "juicebox-mcp",
"version": "1.1.0",
"type": "module",
"author": {
"name": "Jim Robinson"
},
"contributors": [
{
"name": "Douglass Turner"
}
],
"bugs": {
"url": "https://github.com/aidenlab/juicebox-mcp/issues"
},
"scripts": {
"dev": "vite",
"build": "vite build",
"preview": "vite preview",
"build:netlify": "vite build --config vite.config.netlify.js",
"preview:netlify": "vite preview --config vite.config.netlify.js",
"build:mcpb": "node esbuild.config.js && node build-mcpb.js",
"build:mcpb:bundle": "node esbuild.config.js",
"build:mcpb:package": "node build-mcpb.js",
"start:mcpb": "node dist/juicebox-mcp-server.js",
"mcp:server": "node server.js",
"version:sync": "node scripts/sync-version-from-github.js",
"version:sync:tag": "node scripts/sync-version-from-github.js --tag",
"test": "vitest",
"test:ui": "vitest --ui",
"test:run": "vitest run"
},
"keywords": [
"conformation capture",
"hic",
"visualization"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/aidenlab/juicebox-mcp.git"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.22.0",
"cors": "^2.8.5",
"express": "^5.1.0",
"ws": "^8.18.0",
"zod": "^3.25.76"
},
"devDependencies": {
"@vitest/ui": "^4.0.15",
"@xmldom/xmldom": "^0.8.11",
"archiver": "^7.0.1",
"atob": "^2.1.2",
"btoa": "^1.2.1",
"dotenv": "^16.4.5",
"esbuild": "^0.27.1",
"google-utils": "github:igvteam/google-utils#v1.0.2",
"hic-straw": "^2.1.4",
"igv": "^2.15.5",
"igv-ui": "github:igvteam/igv-ui#v1.5.0",
"igv-utils": "github:igvteam/igv-utils#v1.4.5",
"sass": "^1.95.0",
"vite": "^7.2.7",
"vite-plugin-static-copy": "^3.1.4",
"vitest": "^4.0.15",
"w3c-xmlhttprequest": "^3.0.4"
}
}