-
-
Notifications
You must be signed in to change notification settings - Fork 25
Expand file tree
/
Copy pathpackage.json
More file actions
99 lines (99 loc) · 2.44 KB
/
Copy pathpackage.json
File metadata and controls
99 lines (99 loc) · 2.44 KB
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
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
{
"name": "@jsonjoy.com/collaborative-quill-react",
"publishConfig": {
"access": "public"
},
"version": "18.27.0",
"description": "React component for collaborative editing in Quill Editor. Connects JSON CRDT quill-delta node to Quill Editor.",
"author": {
"name": "streamich",
"url": "https://github.com/streamich"
},
"homepage": "https://github.com/streamich/json-joy/tree/master/packages/collaborative-quill-react",
"repository": {
"type": "git",
"url": "https://github.com/streamich/json-joy.git",
"directory": "packages/collaborative-quill-react"
},
"license": "AGPL-3.0-only",
"funding": {
"type": "github",
"url": "https://github.com/sponsors/streamich"
},
"keywords": [
"quill",
"quill-editor",
"quill-editor-binding",
"quill-delta",
"rich-text",
"collaborative",
"multiplayer",
"binding",
"collaborative-editor",
"editor",
"react",
"json-crdt",
"json",
"crdt"
],
"dependencies": {
"@jsonjoy.com/collaborative-presence": "workspace:*",
"@jsonjoy.com/collaborative-quill": "workspace:*"
},
"peerDependencies": {
"quill": ">=2",
"react": "*",
"tslib": "*"
},
"devDependencies": {
"@types/react": "^19",
"@types/react-dom": "^19",
"json-joy": "workspace:*",
"quill": "^2.0.3",
"quill-cursors": "^4.0.4",
"quill-delta": "^5.1.0",
"react": "^19.2.3",
"react-dom": "^19.2.3"
},
"engines": {
"node": ">=10.0"
},
"main": "lib/index.js",
"types": "lib/index.d.ts",
"typings": "lib/index.d.ts",
"files": [
"LICENSE",
"lib/"
],
"scripts": {
"clean": "npx rimraf lib typedocs coverage gh-pages yarn-error.log",
"build": "tsc -b tsconfig.build.json",
"jest": "node -r ts-node/register ./node_modules/.bin/jest",
"test": "jest --maxWorkers 7",
"test:ci": "yarn jest --maxWorkers 3 --no-cache",
"coverage": "yarn test --collectCoverage",
"typedoc": "typedoc",
"typecheck": "tsc -b --noEmit"
},
"jest": {
"preset": "ts-jest",
"testEnvironment": "node",
"moduleFileExtensions": [
"ts",
"js",
"tsx"
],
"transform": {
"^.+\\.tsx?$": "ts-jest"
},
"transformIgnorePatterns": [
".*/node_modules/.*"
],
"testRegex": ".*/(__tests__|__jest__|demo)/.*(?<!\\.vi)\\.(test|spec)\\.tsx?$",
"rootDir": ".",
"testPathIgnorePatterns": [
"node_modules",
"\\.vi\\.(test|spec)\\.tsx?$"
]
}
}