-
-
Notifications
You must be signed in to change notification settings - Fork 759
Expand file tree
/
Copy pathpackage.json
More file actions
68 lines (68 loc) · 2.35 KB
/
Copy pathpackage.json
File metadata and controls
68 lines (68 loc) · 2.35 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
{
"name": "root",
"type": "module",
"devDependencies": {
"@typescript/native-preview": "7.0.0-dev.20260615.1",
"bumpp": "^11.1.0",
"changelogen": "^0.6.1",
"concurrently": "9.1.2",
"eslint-plugin-import": "^2.32.0",
"glob": "^10.5.0",
"oxlint-tsgolint": "^0.23.0",
"serve": "14.2.6",
"typescript": "^5.9.3",
"vite-plus": "catalog:",
"wait-on": "9.0.5"
},
"packageManager": "pnpm@11.8.0+sha512.c1f5e7c4cb241c8f174b743851d82f42b802324afc8b0f116b96adb15aa06664948dde36960a3ba1079ba5b4b29dd0140135b94b5b5f5263592249d68e555f26",
"private": true,
"scripts": {
"dev": "vp run --filter @blocknote/example-editor dev",
"dev:docs": "vp run --filter docs dev",
"build": "vp run -r build",
"build:clean": "vp run clean && vp run gen && vp run clean && vp run build",
"build:site": "vp run -r build:site",
"check": "vp run check --fix",
"clean": "vp run -r clean && vp cache clean",
"gen": "vp run --filter @blocknote/dev-scripts gen",
"install-playwright": "cd tests && vp exec playwright install --with-deps",
"e2e:image": "bash tests/docker-build.sh",
"e2e": "bash tests/docker-run.sh -e CI=1 -- --run",
"e2e:updateSnaps": "bash tests/docker-run.sh -e CI=1 -- --run -u",
"e2e:report": "serve -l 4173 tests/playwright-report",
"lint": "vp lint --type-aware",
"typecheck": "tsgo --noEmit -p tsconfig.json",
"postpublish": "rm -rf packages/core/README.md && rm -rf packages/react/README.md",
"prebuild": "cp README.md packages/core/README.md && cp README.md packages/react/README.md",
"prestart": "vp run build",
"start": "vp run --filter @blocknote/example-editor preview",
"test": "vp run --filter \"@blocknote/*\" --filter \"docs\" test",
"format": "vp fmt",
"prepare": "vp config"
},
"overrides": {
"msw": "2.11.5",
"ai": "6.0.5",
"@ai-sdk/anthropic": "3.0.2",
"@ai-sdk/openai": "3.0.2",
"@ai-sdk/groq": "3.0.2",
"@ai-sdk/google": "3.0.2",
"@ai-sdk/mistral": "3.0.2",
"@ai-sdk/openai-compatible": "2.0.2",
"@ai-sdk/provider-utils": "4.0.2",
"@ai-sdk/react": "3.0.5",
"@ai-sdk/gateway": "3.0.4",
"@headlessui/react": "^2.2.4",
"@tiptap/core": "^3.0.0",
"@tiptap/pm": "^3.0.0"
},
"workspaces": [
"packages/*",
"examples/*/*",
"playground",
"fumadocs",
"docs",
"shared",
"tests"
]
}