-
Notifications
You must be signed in to change notification settings - Fork 13
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 1016 Bytes
/
Copy pathpackage.json
File metadata and controls
40 lines (40 loc) · 1016 Bytes
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
{
"name": "loro-codemirror",
"version": "0.4.0",
"description": "A CodeMirror plugin for loro",
"type": "module",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
}
},
"scripts": {
"build": "tsc",
"dev": "tsc --watch",
"typecheck": "tsc --noEmit"
},
"keywords": [
"loro",
"codemirror"
],
"author": "leon7hao",
"license": "MIT",
"homepage": "https://github.com/loro-dev/loro-codemirror",
"repository": {
"type": "git",
"url": "https://github.com/loro-dev/loro-codemirror.git"
},
"peerDependencies": {
"@codemirror/state": "^6.0.0",
"@codemirror/view": "^6.7.0",
"loro-crdt": "^1.8.2"
},
"devDependencies": {
"@changesets/changelog-github": "^0.5.1",
"@changesets/cli": "^2.29.7",
"typescript": "^5.7.3"
}
}