-
-
Notifications
You must be signed in to change notification settings - Fork 109
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 1.64 KB
/
Copy pathpackage.json
File metadata and controls
40 lines (40 loc) · 1.64 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
{
"name": "zennotes-monorepo",
"private": true,
"version": "2.15.0",
"description": "ZenNotes monorepo for desktop, web, and self-hosted server builds",
"packageManager": "npm@10.9.2",
"engines": {
"node": ">=22"
},
"workspaces": [
"apps/*",
"packages/*"
],
"scripts": {
"dev": "npm run dev:desktop",
"dev:desktop": "npm run dev --workspace @zennotes/desktop",
"dev:web": "npm run dev --workspace @zennotes/web",
"dev:server": "npm run dev --workspace @zennotes/server",
"dev:web-stack": "node tooling/scripts/dev-web-stack.mjs",
"start": "npm run start --workspace @zennotes/desktop",
"typecheck": "turbo run typecheck",
"test": "turbo run test",
"test:run": "turbo run test:run",
"build": "turbo run build --filter=!@zennotes/server && npm run build --workspace @zennotes/server",
"build:prod": "npm run typecheck && npm run test:run && npm run build",
"perf:bench": "node tooling/scripts/perf-large-vault.mjs",
"perf:desktop-runtime": "node tooling/scripts/perf-desktop-runtime.mjs",
"perf:runtime-repeat": "node tooling/scripts/perf-runtime-repeat.mjs",
"perf:web-runtime": "node tooling/scripts/perf-web-runtime.mjs",
"test:sidebar-vim": "node tooling/scripts/sidebar-vim-smoke.mjs",
"verify:channels": "node tooling/scripts/verify-release-channels.mjs",
"pack": "npm run pack --workspace @zennotes/desktop",
"dist:mac": "npm run dist:mac --workspace @zennotes/desktop",
"dist:win": "npm run dist:win --workspace @zennotes/desktop",
"dist:linux": "npm run dist:linux --workspace @zennotes/desktop"
},
"devDependencies": {
"turbo": "^2.5.8"
}
}