-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
123 lines (123 loc) · 3.6 KB
/
package.json
File metadata and controls
123 lines (123 loc) · 3.6 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
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
{
"name": "magic-editor-x",
"version": "1.5.1",
"description": "Advanced block-based editor for Strapi v5 with Editor.js, Media Library integration, and real-time collaboration support",
"keywords": [
"strapi",
"plugin",
"editor-js",
"wysiwyg",
"block-editor",
"strapi-v5"
],
"type": "commonjs",
"exports": {
"./package.json": "./package.json",
"./strapi-admin": {
"source": "./admin/src/index.js",
"import": "./dist/admin/index.mjs",
"require": "./dist/admin/index.js",
"default": "./dist/admin/index.js"
},
"./strapi-server": {
"source": "./server/src/index.js",
"import": "./dist/server/index.mjs",
"require": "./dist/server/index.js",
"default": "./dist/server/index.js"
}
},
"files": [
"dist",
"README.md",
"LICENSE",
"COPYRIGHT_NOTICE.txt",
"pics"
],
"scripts": {
"build": "strapi-plugin build",
"watch": "strapi-plugin watch",
"watch:link": "strapi-plugin watch:link",
"verify": "strapi-plugin verify"
},
"dependencies": {
"@calumk/editorjs-codeflask": "^1.0.10",
"@editorjs/attaches": "^1.3.0",
"@editorjs/checklist": "^1.6.0",
"@editorjs/code": "^2.9.3",
"@editorjs/delimiter": "^1.4.2",
"@editorjs/editorjs": "^2.31.0",
"@editorjs/embed": "^2.7.6",
"@editorjs/header": "^2.8.8",
"@editorjs/image": "^2.10.1",
"@editorjs/inline-code": "^1.5.1",
"@editorjs/link": "^2.6.2",
"@editorjs/marker": "^1.4.0",
"@editorjs/nested-list": "^1.4.3",
"@editorjs/paragraph": "^2.11.6",
"@editorjs/personality": "^2.0.2",
"@editorjs/quote": "^2.7.2",
"@editorjs/raw": "^2.5.0",
"@editorjs/simple-image": "^1.6.0",
"@editorjs/table": "^2.4.2",
"@editorjs/text-variant-tune": "^1.0.2",
"@editorjs/underline": "^1.1.0",
"@editorjs/warning": "^1.4.0",
"@heroicons/react": "^2.2.0",
"@sotaproject/strikethrough": "^1.0.1",
"editorjs-alert": "^1.1.4",
"editorjs-drag-drop": "^1.1.16",
"editorjs-indent-tune": "^1.4.3",
"editorjs-text-alignment-blocktune": "^1.0.3",
"editorjs-toggle-block": "^0.3.16",
"editorjs-tooltip": "^1.2.2",
"editorjs-undo": "^2.0.28",
"open-graph-scraper": "^6.8.3",
"prismjs": "^1.30.0",
"socket.io": "^4.8.1",
"socket.io-client": "^4.8.1",
"y-indexeddb": "^9.0.12",
"y-socket.io": "^1.1.3",
"yjs": "^13.6.15"
},
"devDependencies": {
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/commit-analyzer": "^13.0.0",
"@semantic-release/git": "^10.0.1",
"@semantic-release/github": "^11.0.1",
"@semantic-release/npm": "^12.0.1",
"@semantic-release/release-notes-generator": "^14.0.1",
"@strapi/design-system": "^2.0.2",
"@strapi/icons": "^2.0.2",
"@strapi/sdk-plugin": "^5.3.2",
"@strapi/strapi": "^5.36.0",
"prettier": "^3.7.3",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-router-dom": "^6.30.2",
"semantic-release": "^25.0.2",
"styled-components": "^6.3.8"
},
"peerDependencies": {
"@strapi/sdk-plugin": "^5.3.2",
"@strapi/strapi": "^5.36.0",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-router-dom": "^6.30.2",
"styled-components": "^6.3.8"
},
"overrides": {
"prismjs": "^1.30.0"
},
"strapi": {
"kind": "plugin",
"name": "magic-editor-x",
"displayName": "Magic Editor X",
"description": "Advanced block-based editor with Editor.js for Strapi v5"
},
"license": "MIT",
"author": "Schero D. <schero1894@gmail.com>",
"repository": {
"type": "git",
"url": "https://github.com/Schero94/magic-editor-x.git"
}
}