-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 1.08 KB
/
Copy pathpackage.json
File metadata and controls
39 lines (39 loc) · 1.08 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
{
"name": "nota",
"module": "index.ts",
"type": "module",
"scripts": {
"web:dev": "bun --filter @nota/web dev",
"web:build": "bun --filter @nota/web build",
"web:format": "bun --filter @nota/web format",
"web:ci": "bun --filter @nota/web ci",
"desktop:dev": "bun --filter @nota/desktop dev",
"desktop:build": "bun --filter @nota/desktop build",
"desktop:tauri:dev": "bun --filter @nota/desktop tauri dev",
"desktop:tauri:build": "bun --filter @nota/desktop tauri build",
"desktop:ci": "bun --filter @nota/desktop ci",
"ui:shadcn": "bun --filter @nota/ui shadcn",
"ci:root": "biome ci",
"lint:root": "biome check .",
"format:root": "biome format . --write"
},
"private": true,
"workspaces": [
"packages/*",
"apps/*"
],
"devDependencies": {
"@biomejs/biome": "2.3.8",
"@types/bun": "latest"
},
"dependencies": {
"zod": "^4.4.3"
},
"overrides": {
"prosemirror-model": "*",
"prosemirror-state": "*",
"prosemirror-view": "*",
"prosemirror-transform": "*",
"prosemirror-keymap": "*"
}
}