-
-
Notifications
You must be signed in to change notification settings - Fork 74
/
Copy pathpackage.json
55 lines (55 loc) · 1.31 KB
/
package.json
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
{
"name": "@slate-yjs/react",
"sideEffects": false,
"version": "1.1.0",
"description": "React specific components/utils for slate-yjs.",
"keywords": [
"slate",
"yjs",
"collaborative",
"react"
],
"type": "module",
"exports": {
"require": "./dist/index.cjs",
"default": "./dist/index.js"
},
"main": "dist/index.cjs",
"module": "dist/index.js",
"unpkg": "dist/index.global.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "yarn run tsup && tsc --emitDeclarationOnly",
"dev": "yarn run tsup --watch"
},
"repository": {
"type": "git",
"url": "https://github.com/BitPhinix/slate-yjs.git"
},
"license": "MIT",
"devDependencies": {
"@slate-yjs/core": "^1.0.0",
"@types/react": "^17.0.34",
"@types/use-sync-external-store": "^0.0.3",
"react": "^17.0.2",
"slate": "^0.82.1",
"tsup": "^5.12.1",
"typescript": "^4.6.3",
"yjs": "^13.5.29"
},
"peerDependencies": {
"@slate-yjs/core": "^1.0.0",
"react": ">=16.8.0",
"slate": ">=0.70.0",
"slate-react": ">=0.70.0",
"yjs": "^13.5.29"
},
"bugs": {
"url": "https://github.com/BitPhinix/slate-yjs/issues"
},
"homepage": "https://github.com/BitPhinix/slate-yjs#readme",
"dependencies": {
"use-sync-external-store": "^1.2.0",
"y-protocols": "^1.0.5"
}
}