-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
118 lines (118 loc) · 3.26 KB
/
package.json
File metadata and controls
118 lines (118 loc) · 3.26 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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
{
"name": "modular-studio",
"version": "1.0.6",
"description": "Context engineering IDE for AI agents. Design knowledge pipelines, not just prompts.",
"type": "module",
"license": "Apache-2.0",
"author": "Victor Grosjean <victor.grosjean@gmail.com>",
"repository": {
"type": "git",
"url": "https://github.com/VictorGjn/modular-patchbay.git"
},
"homepage": "https://github.com/VictorGjn/modular-patchbay#readme",
"bugs": {
"url": "https://github.com/VictorGjn/modular-patchbay/issues"
},
"engines": {
"node": ">=18"
},
"keywords": [
"ai",
"agent",
"context-engineering",
"mcp",
"knowledge-pipeline",
"llm"
],
"bin": {
"modular-studio": "./dist-server/bin/modular-studio.js",
"modular-mcp-server": "./dist-server/bin/modular-mcp.js"
},
"files": [
"dist/",
"dist-server/",
"scripts/",
"package.json",
"README.md",
"LICENSE"
],
"scripts": {
"dev": "vite",
"build": "tsc -b && vite build",
"build:server": "tsc -p tsconfig.server.json",
"build:all": "npm run build && npm run build:server",
"lint": "eslint .",
"preview": "vite preview",
"server": "node --import tsx/esm server/index.ts",
"studio": "node --import tsx/esm bin/modular-studio.ts",
"postinstall": "node scripts/stub-sharp.cjs",
"prepublishOnly": "npm run build:all",
"test": "vitest run",
"test:watch": "vitest",
"test:e2e": "playwright test"
},
"dependencies": {
"@anthropic-ai/claude-agent-sdk": "^0.2.62",
"@huggingface/transformers": "^3.8.1",
"@modelcontextprotocol/sdk": "^1.27.0",
"@types/pg": "^8.18.0",
"@vectorize-io/hindsight-client": "^0.4.19",
"@xyflow/react": "^12.10.1",
"cors": "^2.8.5",
"d3": "^7.9.0",
"d3-array": "^3.2.4",
"d3-quadtree": "^3.0.1",
"d3-scale": "^4.0.2",
"d3-scale-chromatic": "^3.1.0",
"express": "^5.1.0",
"jszip": "^3.10.1",
"lodash-es": "^4.17.21",
"lucide-react": "^0.575.0",
"mermaid": "^11.12.3",
"modular-studio": "^0.2.0",
"open": "^10.1.0",
"pg": "^8.20.0",
"react": "^19.2.0",
"react-dom": "^19.2.0",
"react-force-graph-2d": "^1.29.1",
"react-markdown": "^10.1.0",
"remark-gfm": "^4.0.1",
"sql.js": "^1.14.1",
"zod": "^4.0.0",
"zustand": "^5.0.11"
},
"lint-staged": {
"*.{ts,tsx}": [
"eslint --fix"
]
},
"devDependencies": {
"@eslint-community/eslint-utils": "^4.9.1",
"@eslint/js": "^9.39.1",
"@playwright/test": "^1.58.2",
"@tailwindcss/vite": "^4.2.1",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.2",
"@testing-library/user-event": "^14.6.1",
"@types/cors": "^2.8.17",
"@types/express": "^5.0.0",
"@types/node": "^24.10.1",
"@types/react": "^19.2.7",
"@types/react-dom": "^19.2.3",
"@types/sql.js": "^1.4.9",
"@vitejs/plugin-react": "^5.1.1",
"@vitest/coverage-v8": "^4.1.0",
"eslint": "^9.39.1",
"eslint-plugin-react-hooks": "^7.0.1",
"eslint-plugin-react-refresh": "^0.4.24",
"eslint-visitor-keys": "^5.0.1",
"globals": "^16.5.0",
"jsdom": "^28.1.0",
"tailwindcss": "^4.2.1",
"tsx": "^4.19.0",
"typescript": "~5.9.3",
"typescript-eslint": "^8.48.0",
"vite": "^7.3.1",
"vitest": "^4.0.18"
}
}