-
-
Notifications
You must be signed in to change notification settings - Fork 18
/
package.json
71 lines (71 loc) · 1.97 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
66
67
68
69
70
71
{
"name": "y-codemirror",
"version": "3.0.1",
"type": "module",
"description": "CodeMirror binding for Yjs",
"main": "./dist/y-codemirror.cjs",
"types": "./dist/src/y-codemirror.d.ts",
"module": "./src/y-codemirror.js",
"sideEffects": false,
"funding": {
"type": "GitHub Sponsors ❤",
"url": "https://github.com/sponsors/dmonad"
},
"exports": {
".": {
"import": "./src/y-codemirror.js",
"require": "./dist/y-codemirror.cjs"
},
"./package.json": "./package.json"
},
"files": [
"dist/*",
"src/*"
],
"scripts": {
"clean": "rm -rf dist",
"dist": "npm run clean && rollup -c && tsc",
"watch": "rollup -wc",
"test": "npm run dist && node dist/test.node.js",
"test-extensive": "npm run dist && node dist/test.node.js --production --repetition-time 10000",
"lint": "standard && tsc",
"preversion": "npm run lint && npm run test-extensive && npm run dist",
"debug": "concurrently 'http-server -c-1 -o test.html' 'npm run watch'",
"start": "concurrently 'http-server -c-1 -o demo/index.html' 'npm run watch'"
},
"repository": {
"type": "git",
"url": "git+https://github.com/yjs/y-codemirror.git"
},
"keywords": [
"Yjs"
],
"author": "Kevin Jahns <kevin.jahns@protonmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/yjs/y-codemirror/issues"
},
"homepage": "https://github.com/yjs/y-codemirror#readme",
"peerDependencies": {
"codemirror": "^5.52.2",
"yjs": "^13.5.17"
},
"dependencies": {
"lib0": "^0.2.43"
},
"devDependencies": {
"@rollup/plugin-commonjs": "^17.1.0",
"@rollup/plugin-node-resolve": "^11.2.1",
"@types/codemirror": "0.0.91",
"codemirror": "^5.64.0",
"concurrently": "^5.3.0",
"http-server": "^0.12.3",
"jsdom": "^16.7.0",
"rollup": "^2.60.1",
"rollup-plugin-css-bundle": "^1.0.4",
"standard": "^14.3.4",
"typescript": "^4.5.2",
"y-webrtc": "^10.2.2",
"yjs": "^13.5.17"
}
}