-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
61 lines (61 loc) · 1.55 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
{
"name": "@proppex/react-md2pdf",
"version": "0.4.0",
"description": "We are creating a react module to parse a Markdown formatted text into PDF using the react-pdf library.",
"author": {
"name": "Marcos Garcia",
"email": "[email protected]"
},
"homepage": "https://github.com/proppex/react-md2pdf#readme",
"keywords": [
"markdown",
"pdf",
"react",
"react-pdf"
],
"repository": {
"type": "git",
"url": "[email protected]:proppex/react-md2pdf.git"
},
"license": "Apache-2.0",
"main": "./dist/index.js",
"module": "./dist/index.es.js",
"types": "./dist/types/index.d.ts",
"type": "module",
"scripts": {
"build": "rollup -c",
"prepublish": "npm run build",
"test": "jest"
},
"peerDependencies": {
"@react-pdf/renderer": "3.4.4",
"react": "18.3.1",
"react-dom": "18.3.1",
"unicode-trie": "2.0.0"
},
"devDependencies": {
"@babel/preset-env": "7.24.5",
"@rollup/plugin-commonjs": "25.0.7",
"@rollup/plugin-json": "6.1.0",
"@rollup/plugin-node-resolve": "15.2.3",
"@rollup/plugin-typescript": "11.1.6",
"@types/dompurify": "3.0.5",
"@types/jest": "29.5.12",
"@types/mdast": "4.0.3",
"@types/node": "^20.12.10",
"@types/react": "18.3.2",
"@types/react-dom": "18.3.0",
"@types/unist": "3.0.2",
"jest": "29.7.0",
"rollup": "4.17.2",
"ts-jest": "29.1.3",
"ts-node": "10.9.2",
"typescript": "5.4.5"
},
"dependencies": {
"dompurify": "3.1.4",
"rehype": "13.0.1",
"remark": "15.0.1",
"remark-parse": "11.0.0"
}
}