-
-
Notifications
You must be signed in to change notification settings - Fork 74
/
Copy pathpackage.json
47 lines (47 loc) · 1.05 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
{
"name": "@slate-yjs/core",
"sideEffects": false,
"version": "1.0.2",
"description": "Yjs binding for Slate.",
"keywords": [
"slate",
"yjs",
"collaborative"
],
"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": "^0.82.1",
"slate-hyperscript": "^0.67.0",
"tsup": "^5.12.1",
"typescript": "^4.6.3",
"yjs": "^13.5.29"
},
"peerDependencies": {
"slate": ">=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": {
"y-protocols": "^1.0.5"
}
}