-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.41 KB
/
package.json
File metadata and controls
57 lines (57 loc) · 1.41 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
{
"name": "beads-viz",
"version": "0.1.2",
"description": "Read-only task graph visualizer for Beads projects — MCP App for Claude Desktop and VS Code Copilot",
"type": "module",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/pyros-projects/beads-viz.git"
},
"homepage": "https://github.com/pyros-projects/beads-viz",
"bugs": {
"url": "https://github.com/pyros-projects/beads-viz/issues"
},
"keywords": [
"mcp",
"mcp-app",
"mcp-server",
"beads",
"task-graph",
"dag",
"visualization",
"claude-desktop",
"vscode-copilot",
"svelte",
"elkjs"
],
"bin": {
"beads-viz": "dist/server/index.js"
},
"files": [
"dist/"
],
"scripts": {
"dev": "vite --config vite.config.ts",
"build:ui": "vite build --config vite.config.ts",
"build:server": "tsc -p tsconfig.server.json",
"build": "npm run build:ui && npm run build:server",
"start": "node dist/server/index.js",
"prepublishOnly": "npm run build"
},
"dependencies": {
"@modelcontextprotocol/ext-apps": "^1.0.0",
"@modelcontextprotocol/sdk": "^1.12.0",
"zod": "^3.24.0"
},
"devDependencies": {
"@sveltejs/vite-plugin-svelte": "^5.0.0",
"@types/node": "^22.0.0",
"elkjs": "^0.9.0",
"svelte": "^5.0.0",
"tsx": "^4.19.0",
"typescript": "^5.7.0",
"vite": "^6.0.0",
"vite-plugin-singlefile": "^2.0.0"
}
}