-
Notifications
You must be signed in to change notification settings - Fork 14
/
package.json
122 lines (122 loc) · 3.33 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
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
{
"name": "strapi-plugin-wysiwyg-react-md-editor",
"version": "5.0.2",
"description": "Replaces the default Strapi WYSIWYG editor with react md editor.",
"keywords": [
"strapi",
"plugins",
"rich text editor"
],
"homepage": "https://github.com/kwinyyyc/strapi-plugin-wysiwyg-react-md-editor#readme",
"bugs": {
"url": "https://github.com/kwinyyyc/strapi-plugin-wysiwyg-react-md-editor/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/kwinyyyc/strapi-plugin-wysiwyg-react-md-editor.git"
},
"license": "MIT",
"author": {
"name": "Kwinten",
"email": "[email protected]",
"url": "https://github.com/kwinyyyc"
},
"maintainers": [
{
"name": "Kwinten",
"email": "[email protected]",
"url": "https://github.com/kwinyyyc"
}
],
"contributors": [
{
"name": "John Mitchell-Grant",
"url": "https://github.com/johnmgrant"
},
{
"name": "Saikat Mitra",
"url": "https://github.com/saikatmitra91"
},
{
"name": "琚致远 / Zhiyuan Ju",
"url": "https://github.com/juzhiyuan"
},
{
"name": "Oscar Martin Glez-Chavez",
"url": "https://github.com/omartin9203"
}
],
"type": "commonjs",
"exports": {
"./package.json": "./package.json",
"./strapi-admin": {
"types": "./dist/admin/src/index.d.ts",
"source": "./admin/src/index.ts",
"import": "./dist/admin/index.mjs",
"require": "./dist/admin/index.js",
"default": "./dist/admin/index.js"
},
"./strapi-server": {
"types": "./dist/server/src/index.d.ts",
"source": "./server/src/index.ts",
"import": "./dist/server/index.mjs",
"require": "./dist/server/index.js",
"default": "./dist/server/index.js"
}
},
"files": [
"dist"
],
"scripts": {
"build": "strapi-plugin build",
"clean": "rimraf dist",
"develop": "yarn watch",
"prepack": "yarn build",
"test:ts:back": "run -T tsc -p server/tsconfig.json",
"test:ts:front": "run -T tsc -p admin/tsconfig.json",
"verify": "strapi-plugin verify",
"watch": "strapi-plugin watch",
"watch:link": "strapi-plugin watch:link"
},
"dependencies": {
"@uiw/react-md-editor": "^4.0.0"
},
"devDependencies": {
"@strapi/icons": "2.0.0-rc.11",
"@strapi/sdk-plugin": "^5.2.6",
"@strapi/strapi": "^5.0.2",
"@strapi/typescript-utils": "^5.0.2",
"@types/react": "^17.0.53",
"@types/react-dom": "^18.0.28",
"@types/react-router-dom": "^5.3.3",
"@types/styled-components": "^5.1.26",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-router-dom": "^6.26.2",
"rimraf": "^5.0.5",
"styled-components": "^6.1.13",
"typescript": "^5.6.0"
},
"peerDependencies": {
"@strapi/icons": "2.0.0-rc.11",
"@strapi/sdk-plugin": "^5.2.6",
"@strapi/strapi": "^5.0.2",
"@strapi/typescript-utils": "^5.0.2",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-router-dom": "^6.26.2",
"styled-components": "^6.1.13"
},
"engines": {
"node": ">=18.0.0 <=20.x.x",
"npm": ">=6.0.0"
},
"strapi": {
"name": "wysiwyg-react-md-editor",
"icon": "plug",
"displayName": "React MD Editor",
"description": "Replaces the default Strapi WYSIWYG editor with react md editor.",
"required": false,
"kind": "plugin"
}
}