-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 1.23 KB
/
package.json
File metadata and controls
36 lines (36 loc) · 1.23 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
{
"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",
"content-engine:discover": "node scripts/content-engine/discover.mjs",
"content-engine:prioritize": "node scripts/content-engine/prioritize.mjs",
"content-engine:draft": "node scripts/content-engine/draft.mjs",
"content-engine:refresh": "node scripts/content-engine/refresh.mjs",
"content-engine:sync": "node scripts/content-engine/sync.mjs",
"content-engine:test": "node --test scripts/content-engine/tests/*.test.mjs",
"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"
}
}