-
-
Notifications
You must be signed in to change notification settings - Fork 144
Expand file tree
/
Copy pathpackage.json
More file actions
69 lines (69 loc) · 3.12 KB
/
Copy pathpackage.json
File metadata and controls
69 lines (69 loc) · 3.12 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
{
"name": "zennotes-monorepo",
"private": true,
"version": "2.52.0",
"description": "ZenNotes monorepo for desktop, web, and self-hosted server builds",
"packageManager": "npm@10.9.2",
"engines": {
"node": ">=22"
},
"workspaces": [
"apps/*",
"packages/*"
],
"overrides": {
"@excalidraw/excalidraw": {
"nanoid": "3.3.18"
},
"@excalidraw/mermaid-to-excalidraw": {
"@mermaid-js/parser": "1.2.1",
"nanoid": "5.1.16"
},
"vite": "$vite"
},
"scripts": {
"postinstall": "cd apps/desktop && patch-package --error-on-fail",
"dev": "npm run dev:desktop",
"dev:desktop": "npm run dev --workspace @zennotes/desktop",
"dev:web": "npm run dev --workspace @zennotes/web",
"dev:server": "node tooling/scripts/run-server-dev.mjs",
"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",
"test:shared-packages": "node tooling/scripts/test-shared-packages.mjs",
"test:web-dist-lock": "node --test tooling/scripts/web-dist-lock.test.mjs",
"artifact:web": "node tooling/scripts/pack-web-artifact.mjs",
"test:web-artifact": "node --test tooling/scripts/pack-web-artifact.test.mjs",
"check:contract-fixtures": "node tooling/scripts/sync-contract-fixtures.mjs",
"sync:contract-fixtures": "node tooling/scripts/sync-contract-fixtures.mjs --write",
"build": "turbo run build",
"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",
"test:vim-editor": "node tooling/scripts/vim-editor-smoke.mjs",
"test:editor-improvements": "node tooling/scripts/editor-improvements-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",
"perf:editor-scroll": "node tooling/scripts/perf-editor-scroll.mjs",
"artifact:app-core": "node tooling/scripts/pack-app-core.mjs",
"test:app-core-package": "node tooling/scripts/test-app-core-package.mjs",
"test:app-core-browser": "node tooling/scripts/test-app-core-browser.mjs",
"pack:share-viewer": "node tooling/scripts/pack-share-viewer.mjs",
"server:binary": "node tooling/scripts/server-binary.mjs",
"terminal:stage": "node tooling/scripts/terminal-artifact.mjs",
"test:terminal": "node --test tooling/scripts/terminal-artifact.test.mjs tooling/scripts/terminal-launcher.test.mjs"
},
"devDependencies": {
"patch-package": "8.0.1",
"turbo": "^2.5.8",
"vite": "^6.4.3"
}
}