-
-
Notifications
You must be signed in to change notification settings - Fork 17
/
package.json
80 lines (80 loc) · 2.04 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
78
79
80
{
"name": "y-quill",
"version": "1.0.0",
"description": "QuillJs bindings for Yjs",
"main": "./dist/y-quill.cjs",
"module": "./src/y-quill.js",
"type": "module",
"types": "./dist/src/y-quill.d.ts",
"sideEffects": false,
"funding": {
"type": "GitHub Sponsors ❤",
"url": "https://github.com/sponsors/dmonad"
},
"scripts": {
"start": "npm run demo",
"demo": "concurrently '0serve -o demo/index.html' 'npm run watch'",
"dist": "rm -rf dist && rollup -c",
"test": "node ./test/test.node.js",
"lint": "standard && tsc",
"watch": "rollup -wc",
"debug": "concurrently '0serve -o ./test.html' 'npm run watch'",
"preversion": "npm run dist && npm run lint && npm run test && test -e ./dist/src/y-quill.d.ts && test -e ./dist/y-quill.cjs && test -e ./dist/y-quill.cjs.map"
},
"files": [
"dist/*",
"src/*"
],
"exports": {
".": {
"types": "./dist/src/y-quill.d.ts",
"module": "./src/y-quill.js",
"import": "./src/y-quill.js",
"require": "./dist/y-quill.cjs"
},
"./package.json": "./package.json"
},
"repository": {
"type": "git",
"url": "git+https://github.com/yjs/y-quill.git"
},
"keywords": [
"Yjs"
],
"author": "Kevin Jahns <[email protected]>",
"license": "MIT",
"standard": {
"ignore": [
"/dist",
"/node_modules",
"/docs"
]
},
"bugs": {
"url": "https://github.com/yjs/y-quill/issues"
},
"homepage": "https://github.com/yjs/y-quill#readme",
"dependencies": {
"lib0": "^0.2.97"
},
"peerDependencies": {
"quill": "^2.0.0",
"quill-cursors": "^4.0.2",
"yjs": "^13.6.14"
},
"devDependencies": {
"@rollup/plugin-commonjs": "^25.0.7",
"@rollup/plugin-node-resolve": "^15.2.3",
"@types/jsdom": "^21.1.7",
"@types/node": "^22.5.5",
"concurrently": "^8.2.2",
"jsdom": "^24.0.0",
"quill": "^2.0.2",
"rollup": "^4.16.2",
"standard": "^17.1.0",
"typescript": "^5.4.5",
"y-protocols": "^1.0.6",
"y-webrtc": "^10.3.0",
"yjs": "^13.6.19"
}
}