-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
71 lines (71 loc) · 1.86 KB
/
package.json
File metadata and controls
71 lines (71 loc) · 1.86 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
{
"name": "react-remarkify",
"version": "0.8.4",
"description": "A simple React.js utility to convert Markdown into React components.",
"license": "MIT",
"author": "Sahil Aggarwal <aggarwalsahil2004@gmail.com>",
"contributors": [],
"homepage": "https://github.com/SahilAggarwal2004/react-remarkify#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/SahilAggarwal2004/react-remarkify.git"
},
"bugs": {
"url": "https://github.com/SahilAggarwal2004/react-remarkify/issues"
},
"type": "module",
"exports": {
".": "./dist/index.mjs",
"./types": "./dist/types.mjs"
},
"files": [
"dist"
],
"scripts": {
"build": "pnpm i && pnpm run compile",
"compile": "tsdown",
"dev": "tsdown --watch",
"dry-release": "release-it --ci --dry-run",
"prettier": "prettier-package-json --write package.json",
"pub": "pnpm login && pnpm publish",
"release": "release-it --ci"
},
"sideEffects": false,
"types": "./dist/index.d.mts",
"dependencies": {
"hast-util-to-jsx-runtime": "^2.3.6",
"mdast-util-to-hast": "^13.2.1",
"rehype-react": "^8.0.0",
"remark-parse": "^11.0.0",
"remark-rehype": "^11.1.2",
"unified": "^11.0.5"
},
"peerDependencies": {
"react": "^17.0.0 || ^18.0.0 || ^19.0.0"
},
"devDependencies": {
"@ianvs/prettier-plugin-sort-imports": "^4.7.1",
"@release-it/conventional-changelog": "^10.0.6",
"@types/react": "^19.2.14",
"prettier-package-json": "^2.8.0",
"release-it": "^19.2.4",
"tsdown": "^0.21.7",
"typescript": "^6.0.2"
},
"keywords": [
"jsx",
"markdown",
"markdown-parser",
"markdown-renderer",
"markdown-to-jsx",
"markdown-to-react",
"react",
"react-components",
"react-markdown",
"react-markdown-renderer",
"react-remarkify",
"react-utility",
"remark",
"typescript"
]
}