-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
51 lines (51 loc) · 1.44 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
{
"name": "codemirror-ot",
"version": "4.4.0",
"description": "Operational Transformation adapter for CodeMirror 6.",
"main": "dist/codemirror-ot.js",
"module": "src/index.js",
"scripts": {
"prettier": "prettier --single-quote {*.js,**/*.js} --write",
"lint": "eslint .",
"build": "rm -rf dist; rollup -c rollup.config.js --bundleConfigAsCjs",
"test": "npm run build && NODE_OPTIONS=--enable-source-maps mocha dist/test",
"prepublishOnly": "npm run build && npm run test",
"postpublish": "git push && git push --tags",
"ncu": "ncu -u"
},
"repository": {
"type": "git",
"url": "git+https://github.com/vizhub-core/codemirror-ot.git"
},
"keywords": [
"OT",
"Code",
"Editor",
"Text"
],
"author": "Curran Kelleher",
"license": "MIT",
"bugs": {
"url": "https://github.com/vizhub-core/codemirror-ot/issues"
},
"homepage": "https://github.com/vizhub-core/codemirror-ot#readme",
"peerDependencies": {
"@codemirror/view": "^6.9.1",
"@codemirror/state": "^6.2.0"
},
"devDependencies": {
"diff-match-patch": "^1.0.5",
"@rollup/plugin-commonjs": "^25.0.7",
"@rollup/plugin-node-resolve": "^15.2.3",
"eslint": "^8.57.0",
"jsdom": "^24.0.0",
"json0-ot-diff": "^1.1.2",
"mocha": "^10.3.0",
"ot-json0": "^1.1.0",
"ot-json1": "^1.0.2",
"ot-text-unicode": "^4.0.0",
"prettier": "^3.2.5",
"rollup": "^4.12.1",
"sharedb": "^4.1.2"
}
}