-
-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 716 Bytes
/
package.json
File metadata and controls
31 lines (31 loc) · 716 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
31
{
"name": "secsync-monorepo",
"private": true,
"workspaces": [
"examples/*",
"packages/*",
"benchmarks/*"
],
"devDependencies": {
"ts-node": "^10.9.2",
"tsup": "^8.0.2",
"typescript": "^5.4.5"
},
"scripts": {
"ts:check": "pnpm install && pnpm -r ts:check",
"test": "pnpm install && pnpm -r test",
"lint": "pnpm install && pnpm -r lint"
},
"pnpm": {
"overrides": {
"yjs": "^13.6.15",
"@automerge/automerge": "^2.2.2",
"prosemirror-model": "^1.21.0",
"prosemirror-state": "^1.4.3",
"prosemirror-view": "^1.33.7",
"prosemirror-transform": "^1.9.0",
"y-prosemirror": "^1.2.5",
"@tiptap/core": "^2.4.0"
}
}
}