-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
102 lines (102 loc) · 2.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
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
100
101
102
{
"name": "@collaborne/remirror-extension-yjs",
"version": "1.2.1",
"description": "Realtime collaboration with yjs (Collaborne fork)",
"keywords": [
"remirror",
"extension",
"yjs",
"realtime",
"collaboration"
],
"homepage": "https://github.com/Collaborne/remirror-extension-yjs",
"repository": {
"type": "git",
"url": "https://github.com/Collaborne/remirror-extension-yjs.git"
},
"license": "MIT",
"contributors": [
"Andreas Kohn <andreas.kohn@gmail.com>",
"Benjie Gillam <code@benjiegillam.com>",
"Ifiok Jr. <ifiokotung@gmail.com>"
],
"sideEffects": false,
"exports": {
".": {
"import": "./dist/index.js",
"browser": "./dist/index.js",
"require": "./dist.cjs/index.js",
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
},
"./package.json": "./package.json"
},
"main": "./dist.cjs/index.js",
"module": "dist/index.js",
"browser": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist",
"dist.cjs"
],
"scripts": {
"build": "tsc -p tsconfig.dist.json && tsc -p tsconfig.dist.cjs.json",
"build:watch": "npm run build -- --watch",
"test": "jest"
},
"dependencies": {
"@collaborne/y-prosemirror": "^1.2.0"
},
"devDependencies": {
"@remirror/pm": "^1.0.9",
"@remirror/core": "^1.3.2",
"@remirror/extension-annotation": "^1.1.12",
"@remirror/messages": "^1.0.5",
"@types/jest": "^27.0.3",
"jest": "^27.4.5",
"jest-extended": "^1.2.0",
"jest-prosemirror": "^1.0.11",
"jest-remirror": "^1.0.19",
"ts-jest": "^27.1.2",
"tsconfig-collaborne": "^1.5.0",
"typescript": "^4.5.4",
"y-webrtc": "^10.2.0",
"yjs": "^13.5.11"
},
"peerDependencies": {
"@remirror/pm": "^1.0.8",
"@remirror/core": "^1.3.2",
"@remirror/extension-annotation": "^1.1.12",
"@remirror/messages": "^1.0.5",
"yjs": "^13.4.0"
},
"engines": {
"npm": ">=8.3.0"
},
"publishConfig": {
"access": "public"
},
"jest": {
"preset": "ts-jest",
"transform": {
"\\.[jt]sx?$": [
"ts-jest"
]
},
"globals": {
"ts-jest": {
"tsconfig": {
"allowJs": true
}
}
},
"setupFilesAfterEnv": [
"./jest.setup.ts"
],
"transformIgnorePatterns": [
"node_modules/(?!(lib0|y-protocols)/)"
],
"testEnvironment": "jsdom",
"testRegex": "(/__tests__/(.+)(\\.|/)(test|spec))\\.[jt]sx?$"
}
}