-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
92 lines (92 loc) · 1.87 KB
/
package.json
File metadata and controls
92 lines (92 loc) · 1.87 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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
{
"name": "loro-adaptors",
"version": "0.6.1",
"author": "Loro Team",
"main": "dist/index.js",
"type": "module",
"scripts": {
"build": "tsdown",
"dev": "tsdown --watch",
"test": "vitest run",
"typecheck": "tsc --noEmit",
"clean": "rm -rf dist"
},
"dependencies": {
"loro-protocol": "workspace:*"
},
"peerDependencies": {
"@loro-dev/flock": "^4.1.0",
"loro-crdt": "^1.9.0",
"yjs": "*"
},
"peerDependenciesMeta": {
"@loro-dev/flock": {
"optional": true
},
"loro-crdt": {
"optional": true
},
"yjs": {
"optional": true
}
},
"devDependencies": {
"@types/node": "^20.0.0",
"typescript": "^5.0.0",
"tsdown": "^0.14.1",
"vitest": "^2.0.0"
},
"keywords": [
"loro",
"crdt",
"adaptor",
"websocket",
"collaborative-editing",
"presence",
"ephemeral",
"e2ee"
],
"repository": {
"type": "git",
"url": "https://github.com/loro-dev/protocol",
"directory": "packages/loro-adaptors"
},
"bugs": {
"url": "https://github.com/loro-dev/protocol/issues"
},
"homepage": "https://github.com/loro-dev/protocol/tree/main/packages/loro-adaptors",
"license": "MIT",
"engines": {
"node": ">=18.0.0"
},
"sideEffects": false,
"publishConfig": {
"access": "public"
},
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"require": "./dist/index.cjs"
},
"./flock": {
"types": "./dist/flock.d.ts",
"import": "./dist/flock.js",
"require": "./dist/flock.cjs"
},
"./yjs": {
"types": "./dist/yjs.d.ts",
"import": "./dist/yjs.js",
"require": "./dist/yjs.cjs"
},
"./loro": {
"types": "./dist/loro.d.ts",
"import": "./dist/loro.js",
"require": "./dist/loro.cjs"
}
},
"files": [
"dist/**/*",
"src/**/*"
]
}