-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
51 lines (51 loc) · 1.47 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
{
"name": "editorjs-realtime-collab",
"version": "0.2.0",
"description": "Concurrent real-time plugin for EditorJS",
"scripts": {
"build": "webpack --mode production",
"build:dev": "webpack --mode development --watch --output-filename=dev-build.js"
},
"author": "sebmeister2077",
"license": "MIT",
"dependencies": {
"throttle-debounce": "^5.0.0"
},
"devDependencies": {
"@babel/core": "^7.23.7",
"@babel/preset-env": "^7.23.7",
"@editorjs/editorjs": "^2.28.2",
"@types/signalr": "^2.4.3",
"@types/throttle-debounce": "^5.0.2",
"babel-loader": "^9.1.3",
"css-loader": "^6.8.1",
"raw-loader": "^4.0.2",
"style-loader": "^3.3.3",
"ts-loader": "^9.5.1",
"webpack": "^5.89.0",
"webpack-cli": "^5.1.4"
},
"main": "./dist/bundle.js",
"types": "./dist/index.d.ts",
"files": [
"dist/bundle.js",
"dist/index.d.ts",
"dist/UtilityTypes.d.ts"
],
"keywords": [
"codex editor",
"realtime",
"socket",
"plugin",
"editor.js",
"editorjs"
],
"repository": {
"type": "git",
"url": "https://github.com/sebmeister2077/editorjs-realtime-collab.git"
},
"bugs": {
"url": "https://github.com/sebmeister2077/editorjs-realtime-collab/issues"
},
"homepage": "https://github.com/sebmeister2077/editorjs-realtime-collab#readme"
}