-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
154 lines (154 loc) · 4.83 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
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
{
"name": "@readme/markdown",
"description": "ReadMe's React-based Markdown parser",
"author": "Rafe Goldberg <[email protected]>",
"version": "7.8.0",
"main": "dist/main.node.js",
"types": "dist/index.d.ts",
"browser": "dist/main.js",
"files": [
"styles",
"components",
"dist"
],
"scripts": {
"build": "webpack --mode production && npm run build-types",
"build-types": "npx tsc --declaration --emitDeclarationOnly --declarationDir ./dist --skipLibCheck",
"lint": "eslint . --ext .jsx --ext .js --ext .ts --ext .tsx",
"release": "npx semantic-release",
"release.dry": "npx semantic-release --dry-run",
"start": "webpack serve --open --mode development --config ./webpack.dev.js",
"test": "vitest",
"test.ui": "vitest --ui",
"test.browser": "jest",
"watch": "webpack --watch --progress --mode development"
},
"dependencies": {
"@mdx-js/mdx": "^3.0.0",
"@readme/emojis": "^5.1.0",
"@readme/syntax-highlighter": "^13.1.0",
"copy-to-clipboard": "^3.3.2",
"core-js": "^3.36.1",
"debug": "^4.3.4",
"emoji-regex": "^10.2.1",
"estree-util-value-to-estree": "^3.1.1",
"gemoji": "^8.1.0",
"hast-util-from-html": "^2.0.1",
"hast-util-sanitize": "^4.0.0",
"hast-util-to-xast": "^3.0.0",
"hastscript": "^9.0.0",
"lodash.escape": "^4.0.1",
"lodash.kebabcase": "^4.1.1",
"mdast-util-find-and-replace": "^3.0.1",
"mdast-util-phrasing": "^4.1.0",
"path-browserify": "^1.0.1",
"process": "^0.11.10",
"prop-types": "^15.8.1",
"rehype-remark": "^10.0.0",
"rehype-slug": "^6.0.0",
"remark": "^15.0.1",
"remark-frontmatter": "^5.0.0",
"remark-gfm": "^4.0.0",
"remark-mdx": "^3.0.0",
"remark-parse": "^11.0.0",
"trim": "^1.0.1",
"unified": "^11.0.4",
"unist-util-flatmap": "^1.0.0",
"unist-util-visit": "^5.0.0",
"util": "^0.12.5",
"xast-util-to-xml": "^4.0.0"
},
"peerDependencies": {
"@mdx-js/react": "^3.0.0",
"@readme/markdown-legacy": "npm:@readme/markdown@^6.87.1",
"@readme/variable": "^16.1.0",
"@tippyjs/react": "^4.1.0",
"react": "16.x || 17.x || 18.x",
"react-dom": "16.x || 17.x || 18.x"
},
"devDependencies": {
"@babel/core": "^7.21.4",
"@babel/eslint-parser": "^7.21.3",
"@babel/plugin-proposal-class-properties": "^7.18.6",
"@babel/plugin-proposal-export-default-from": "^7.23.3",
"@babel/plugin-proposal-object-rest-spread": "^7.20.7",
"@babel/plugin-proposal-optional-chaining": "^7.21.0",
"@babel/plugin-proposal-private-methods": "^7.18.6",
"@babel/plugin-transform-runtime": "^7.21.4",
"@babel/preset-env": "^7.21.4",
"@babel/preset-react": "^7.18.6",
"@babel/preset-typescript": "^7.21.4",
"@commitlint/cli": "^19",
"@commitlint/config-angular": "^19",
"@commitlint/config-conventional": "^19",
"@readme/eslint-config": "^14.0.0",
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/git": "^10.0.1",
"@testing-library/jest-dom": "^6.4.2",
"@testing-library/react": "^14",
"@testing-library/user-event": "^14.5.2",
"@types/hast": "^3.0.4",
"@types/jest": "^29.5.12",
"@types/mdast": "^4.0.3",
"@types/mdx": "^2.0.12",
"@types/unist": "^3.0.2",
"@vitejs/plugin-react": "^4.2.1",
"@vitest/coverage-v8": "^1.6.0",
"@vitest/ui": "^1.6.0",
"babel-jest": "^29.5.0",
"babel-loader": "^9.1.2",
"browserify-fs": "^1.0.0",
"codemirror": "^5.54.0",
"css-loader": "^7.1.2",
"eslint": "^8.37.0",
"hast-util-to-text": "^4.0.2",
"identity-obj-proxy": "^3.0.0",
"jest": "^29.5.0",
"jest-environment-jsdom": "^29.5.0",
"jest-environment-puppeteer": "^8.0.6",
"jest-image-snapshot": "^6.4.0",
"jest-puppeteer": "^10.1.4",
"mermaid": "^11.3.0",
"mini-css-extract-plugin": "^2.7.5",
"prettier": "^3.2.5",
"puppeteer": "^19.8.3",
"react-router-dom": "^6.22.3",
"remark-slug": "^7.0.1",
"sass": "^1.80.1",
"sass-loader": "^13.2.2",
"semantic-release": "^24.2.0",
"stream-browserify": "^3.0.0",
"string.prototype.trimend": "^1.0.6",
"terser-webpack-plugin": "^5.3.7",
"ts-loader": "^9.4.2",
"typescript": "^5.4.5",
"unist-util-map": "^4.0.0",
"vitest": "^1.4.0",
"webpack": "^5.56.0",
"webpack-cli": "^5.0.1",
"webpack-dev-server": "^4.13.2",
"webpack-merge": "^5.8.0"
},
"license": "MIT",
"homepage": "https://rdmd.readme.io",
"repository": "https://github.com/readmeio/markdown",
"prettier": "@readme/eslint-config/prettier",
"bundlewatch": {
"files": [
{
"path": "dist/main.js",
"maxSize": "1MB"
},
{
"path": "dist/main.node.js",
"maxSize": "750KB"
}
]
},
"optionalDependencies": {
"mermaid": "^11.3.0"
},
"overrides": {
"conventional-changelog-conventionalcommits": ">= 8.0.0"
}
}