-
-
Notifications
You must be signed in to change notification settings - Fork 38
/
package.json
77 lines (77 loc) · 2.18 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
72
73
74
75
76
77
{
"name": "y-codemirror.next",
"version": "0.3.5",
"description": "CodeMirror6 binding for Yjs",
"main": "./dist/y-codemirror.cjs",
"types": "./dist/src/index.d.ts",
"module": "./src/index.js",
"type": "module",
"sideEffects": false,
"funding": {
"type": "GitHub Sponsors ❤",
"url": "https://github.com/sponsors/dmonad"
},
"files": [
"dist/*",
"src/*"
],
"exports": {
".": {
"types": "./dist/src/index.d.ts",
"import": "./src/index.js",
"module": "./src/index.js",
"require": "./dist/y-codemirror.cjs"
},
"./package.json": "./package.json"
},
"scripts": {
"clean": "rm -rf dist",
"dist": "npm run clean && rollup -c && tsc",
"watch": "rollup -wc",
"test": "npm run dist && node test/test.node.cjs",
"test-extensive": "npm run dist && node test/test.node.cjs --production --repetition-time 10000",
"lint": "standard && tsc",
"preversion": "npm run lint && npm run test-extensive && npm run dist",
"debug": "concurrently 'http-server -o test.html' 'npm run watch'",
"start": "concurrently 'http-server -o demo/index.html' 'npm run watch'"
},
"repository": {
"type": "git",
"url": "git+https://github.com/yjs/y-codemirror.next.git"
},
"keywords": [
"Yjs"
],
"author": "Kevin Jahns <kevin.jahns@protonmail.com>",
"email": "kevin.jahns@protonmail.com",
"license": "MIT",
"bugs": {
"url": "https://github.com/yjs/y-codemirror.next/issues"
},
"homepage": "https://github.com/yjs/y-codemirror.next#readme",
"peerDependencies": {
"@codemirror/state": "^6.0.0",
"@codemirror/view": "^6.0.0",
"yjs": "^13.5.6"
},
"dependencies": {
"lib0": "^0.2.42"
},
"devDependencies": {
"codemirror": "^6.0.0",
"@codemirror/lang-javascript": "^6.0.0",
"@codemirror/state": "^6.0.0",
"@codemirror/view": "^6.0.0",
"@rollup/plugin-commonjs": "^17.0.0",
"@rollup/plugin-node-resolve": "^11.0.1",
"concurrently": "^5.3.0",
"http-server": "^14.1.0",
"jsdom": "^16.7.0",
"rollup": "^2.58.0",
"rollup-plugin-terser": "^7.0.2",
"standard": "^14.3.4",
"typescript": "^3.9.10",
"y-webrtc": "^10.2.0",
"yjs": "^13.5.13"
}
}