-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathpackage.json
More file actions
20 lines (20 loc) · 736 Bytes
/
Copy pathpackage.json
File metadata and controls
20 lines (20 loc) · 736 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
{
"name": "modular-context-monorepo",
"version": "0.0.0",
"private": true,
"description": "Monorepo: Obsidian plugin + standalone Electron app sharing portable terminal/agent/UI modules",
"workspaces": [
"packages/*"
],
"scripts": {
"build:plugin": "npm --workspace packages/plugin run build",
"build:app": "npm --workspace packages/app run build",
"build:shared": "npm --workspace packages/shared run build",
"build:mcp-google": "npm --workspace packages/mcp-google run build",
"build": "npm run build:shared && npm run build:mcp-google && npm run build:plugin && npm run build:app",
"dev:app": "npm --workspace packages/app run dev"
},
"devDependencies": {
"7zip-bin": "^5.2.0"
}
}