-
Notifications
You must be signed in to change notification settings - Fork 20
Expand file tree
/
Copy pathpackage.json
More file actions
67 lines (67 loc) · 1.56 KB
/
Copy pathpackage.json
File metadata and controls
67 lines (67 loc) · 1.56 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
{
"name": "loro-prosemirror",
"version": "0.4.4",
"description": "ProseMirror Binding for Loro",
"packageManager": "pnpm@10.19.0",
"type": "module",
"main": "dist/index.cjs",
"module": "dist/index.js",
"types": "dist/index.d.ts",
"exports": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"require": "./dist/index.cjs"
},
"sideEffects": false,
"scripts": {
"check-format": "prettier --check .",
"format": "prettier --write .",
"build": "tsdown",
"test": "vitest run",
"lint": "tsc --noEmit",
"coverage": "vitest run --coverage"
},
"homepage": "https://github.com/loro-dev/loro-prosemirror#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/loro-dev/loro-prosemirror.git"
},
"bugs": {
"url": "https://github.com/loro-dev/loro-prosemirror/issues"
},
"keywords": [
"rich-text",
"prosemirror",
"loro",
"local-first",
"crdt"
],
"author": "Loro Team",
"license": "MIT",
"dependencies": {
"lib0": "^0.2.42",
"prosemirror-model": "^1.18.1",
"prosemirror-state": "^1.4.1",
"prosemirror-view": "^1.28.0"
},
"files": [
"dist",
"src"
],
"peerDependencies": {
"loro-crdt": "^1.10.2"
},
"devDependencies": {
"@typescript-eslint/parser": "^7.4.0",
"@vitest/coverage-v8": "^1.4.0",
"chromatic": "^11.5.3",
"eslint": "^8.57.0",
"lib0": "^0.2.93",
"loro-crdt": "^1.10.2",
"prettier": "^3.2.5",
"tsdown": "^0.20.3",
"typescript": "^5.4.3",
"vite": "^5.2.7",
"vitest": "^1.4.0"
}
}