-
Notifications
You must be signed in to change notification settings - Fork 42
Expand file tree
/
Copy pathpackage.json
More file actions
83 lines (83 loc) · 3.04 KB
/
package.json
File metadata and controls
83 lines (83 loc) · 3.04 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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
{
"name": "@decocms/mesh-monorepo",
"devDependencies": {
"@biomejs/biome": "2.2.5",
"@types/bun": "^1.3.1",
"@types/node": "^24.9.1",
"@types/react": "^19.2.0",
"@types/react-dom": "^19.0.4",
"knip": "^5.83.1",
"oxlint": "1.23.0",
"react": "^19.2.0",
"typescript": "^5.9.3",
"worktree-devservers": "0.3.1"
},
"engines": {
"node": ">=24.0.0"
},
"private": true,
"scripts": {
"dev": "bun run --env-file=.env scripts/dev.ts",
"dev:worktree": "bun run scripts/dev-worktree.ts",
"dev:conductor": "WORKTREE_SLUG=$CONDUCTOR_WORKSPACE_NAME bun run dev:worktree",
"fmt": "biome format --write",
"lint": "oxlint",
"check": "bun run --workspaces check",
"check:ci": "bun run --workspaces check",
"fmt:check": "biome format",
"test": "bun test apps/mesh/src packages",
"docs:dev": "bun run --cwd=apps/docs dev:client",
"docs:deploy": "bun run --cwd=apps/docs deploy",
"build:runtime": "bun run --filter=@decocms/runtime build",
"ui": "npx shadcn@latest add -c ./packages/ui",
"clean": "rm -f deno.lock package-lock.json bun.lock && rm -rf node_modules apps/*/node_modules packages/*/node_modules",
"exorcise": "bun run clean && bun install --force",
"knip": "knip",
"benchmark": "bun run --cwd=apps/benchmark benchmark",
"benchmark:quick": "bun run --cwd=apps/benchmark benchmark:quick",
"services:up": "bun run --env-file apps/mesh/.env apps/mesh/src/cli.ts services up",
"services:down": "bun run --env-file apps/mesh/.env apps/mesh/src/cli.ts services down",
"services:status": "bun run --env-file apps/mesh/.env apps/mesh/src/cli.ts services status"
},
"type": "module",
"workspaces": [
"apps/*",
"packages/*"
],
"trustedDependencies": [
"@duckdb/node-api",
"@duckdb/node-bindings"
],
"overrides": {
"fast-xml-parser": "5.4.2",
"@tiptap/core": "3.20.2",
"@tiptap/pm": "3.20.2",
"@tiptap/react": "3.20.2",
"@tiptap/starter-kit": "3.20.2",
"@tiptap/suggestion": "3.20.2",
"@tiptap/extension-blockquote": "3.20.2",
"@tiptap/extension-bold": "3.20.2",
"@tiptap/extension-bullet-list": "3.20.2",
"@tiptap/extension-code": "3.20.2",
"@tiptap/extension-code-block": "3.20.2",
"@tiptap/extension-document": "3.20.2",
"@tiptap/extension-dropcursor": "3.20.2",
"@tiptap/extension-gapcursor": "3.20.2",
"@tiptap/extension-hard-break": "3.20.2",
"@tiptap/extension-heading": "3.20.2",
"@tiptap/extension-horizontal-rule": "3.20.2",
"@tiptap/extension-italic": "3.20.2",
"@tiptap/extension-link": "3.20.2",
"@tiptap/extension-list": "3.20.2",
"@tiptap/extension-list-item": "3.20.2",
"@tiptap/extension-list-keymap": "3.20.2",
"@tiptap/extension-mention": "3.20.2",
"@tiptap/extension-ordered-list": "3.20.2",
"@tiptap/extension-paragraph": "3.20.2",
"@tiptap/extension-placeholder": "3.20.2",
"@tiptap/extension-strike": "3.20.2",
"@tiptap/extension-text": "3.20.2",
"@tiptap/extension-underline": "3.20.2",
"@tiptap/extensions": "3.20.2"
}
}