-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
65 lines (65 loc) · 1.59 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
56
57
58
59
60
61
62
63
64
65
{
"name": "jotai-yjs",
"description": "jotai-yjs makes yjs state even easier",
"version": "0.0.1",
"repository": {
"type": "git",
"url": "https://github.com/astahmer/jotai-yjs.git"
},
"author": "Alexandre Stahmer <[email protected]>",
"files": [
"src",
"dist"
],
"source": "src/index.ts",
"typings": "src/index.ts",
"main": "./dist/jotai-yjs.umd.js",
"module": "./dist/jotai-yjs.es.js",
"exports": {
".": {
"import": "./dist/jotai-yjs.es.js",
"require": "./dist/jotai-yjs.umd.js"
}
},
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"watch": "vite build --watch",
"serve": "vite preview"
},
"keywords": [
"react",
"jotai",
"valtio",
"yjs",
"crdt"
],
"dependencies": {
"@pastable/core": "^0.1.8",
"jotai": "^1.2.2",
"react": "^17.0.2",
"valtio": "^1.1.0",
"valtio-yjs": "^0.1.0",
"y-websocket": "^1.3.16",
"yjs": "^13.5.11"
},
"peerDependencies": {
"jotai": "*",
"react": ">=16.8",
"valtio": "*",
"valtio-yjs": "*",
"y-websocket": "*",
"yjs": "*"
},
"devDependencies": {
"@types/react": "^17.0.15",
"@types/rollup-plugin-peer-deps-external": "^2.2.1",
"prettier": "^2.3.2",
"rollup-plugin-peer-deps-external": "^2.2.4",
"typescript": "^4.3.2",
"vite": "^2.4.3"
},
"publishConfig": {
"access": "public"
}
}