-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
60 lines (60 loc) · 1.54 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
{
"name": "react-page-markdown-plugin",
"version": "1.1.3",
"description": "react-page plugin to render markdown as HTML in realtime",
"main": "./lib/index.js",
"sideEffects": false,
"scripts": {
"build": "npm run build:lib",
"build:watch": "npm run build:lib:watch",
"build:lib": "tsc -p ./tsconfig.json && tsc -p ./tsconfig-es.json",
"build:lib:watch": "yarn build:lib -- --watch",
"clean": "rimraf \"lib\" && rimraf \"lib-es\" && rm -f *.tsbuildinfo"
},
"keywords": [
"react-page",
"plugin",
"markdown"
],
"author": {
"name": "Talal Ahmed",
"email": "talalahmed252@gmail.com",
"url": "https://talal02.github.io"
},
"contributors": [
{
"name": "Talha",
"email": "talhanasr3e@gmail.com"
},
{
"name": "Grayhat Developers",
"email": "info@grayhat.com.pk",
"url": "https://www.grayhat.com.pk/"
}
],
"license": "MIT",
"dependencies": {
"@react-page/editor": "^4.1.1",
"react-markdown": "^8.0.3"
},
"peerDependencies": {
"react": "^17.0.1",
"react-dom": "^17.0.1"
},
"devDependencies": {
"@types/jest": "^28.1.8",
"@types/node": "^18.7.13",
"typescript": "^4.2.3"
},
"repository": {
"type": "git",
"url": "git+https://github.com/grayhatdevelopers/react-page-markdown-plugin.git"
},
"bugs": {
"url": "https://github.com/grayhatdevelopers/react-page-markdown-plugin/issues"
},
"publishConfig": {
"access": "public"
},
"homepage": "https://grayhatdevelopers.github.io/react-page-markdown-plugin/"
}