-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
22 lines (22 loc) · 757 Bytes
/
Copy pathpackage.json
File metadata and controls
22 lines (22 loc) · 757 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
{
"name": "md-view-monorepo",
"version": "0.1.0",
"private": true,
"description": "md.view — Lightweight Markdown viewer (Mac app + Browser webview)",
"workspaces": [
"packages/*",
"apps/*"
],
"scripts": {
"dev:web": "npm run dev -w apps/web",
"dev:mac": "npm run dev -w apps/mac",
"build:web": "npm run build -w packages/core && npm run build -w packages/ui && npm run build -w apps/web",
"build:mac": "npm run build -w packages/core && npm run build -w packages/ui && npm run build -w apps/mac",
"build:core": "npm run build -w packages/core",
"build:ui": "npm run build -w packages/ui",
"build:all": "npm run build:web && npm run build:mac"
},
"devDependencies": {
"typescript": "^5.5.4"
}
}