-
-
Notifications
You must be signed in to change notification settings - Fork 741
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 2.14 KB
/
package.json
File metadata and controls
63 lines (63 loc) · 2.14 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
{
"name": "root",
"type": "module",
"devDependencies": {
"concurrently": "9.1.2",
"eslint-plugin-import": "^2.32.0",
"glob": "^10.5.0",
"serve": "14.2.6",
"typescript": "^5.9.3",
"vite-plus": "catalog:",
"wait-on": "9.0.5"
},
"packageManager": "pnpm@11.5.1+sha512.93f7b57422ea7068257235b4c16eb60762eb68e1dc23723199cc739043ea9be2c4143274a399d8c6defa2b1176226d9ca1c4b63482d6200c1a8fbaa78c1d1485",
"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",
"clean": "vp run -r clean && vp cache clean",
"deploy": "echo not working:(",
"gen": "vp run --filter @blocknote/dev-scripts gen",
"install-playwright": "cd tests && vp exec playwright install --with-deps",
"e2e:image": "docker build -t blocknote-e2e -f tests/Dockerfile .",
"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",
"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 -r 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"
]
}