-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
30 lines (30 loc) · 819 Bytes
/
package.json
File metadata and controls
30 lines (30 loc) · 819 Bytes
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
{
"name": "philo-workspace",
"private": true,
"version": "0.0.10",
"license": "GPL-3.0-or-later",
"type": "module",
"packageManager": "pnpm@10.30.3",
"workspaces": [
"apps/*"
],
"scripts": {
"dev": "pnpm --filter @philo/desktop dev",
"build": "pnpm --filter @philo/desktop build",
"preview": "pnpm --filter @philo/desktop preview",
"typecheck": "turbo run typecheck --force --filter=@philo/desktop --filter=@philo/landing",
"fmt": "dprint fmt",
"fmt:check": "dprint check",
"check": "pnpm run typecheck && dprint fmt",
"release:check": "node scripts/release-check.mjs",
"tauri": "pnpm --filter @philo/desktop tauri"
},
"pnpm": {
"overrides": {
"@tiptap/extension-paragraph": "3.17.1"
}
},
"devDependencies": {
"turbo": "^2.8.14"
}
}