forked from mui/material-ui
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 896 Bytes
/
package.json
File metadata and controls
35 lines (35 loc) · 896 Bytes
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
{
"name": "@mui/internal-markdown",
"version": "1.0.5",
"author": "MUI Team",
"description": "MUI markdown parser. This is an internal package not meant for general use.",
"main": "./index.js",
"types": "./index.d.ts",
"exports": {
".": "./index.js",
"./loader": "./loader.js",
"./prism": "./prism.js"
},
"repository": {
"type": "git",
"url": "https://github.com/mui/material-ui.git",
"directory": "packages/markdown"
},
"scripts": {
"release:publish": "pnpm publish --tag latest",
"release:publish:dry-run": "pnpm publish --tag latest --registry=\"http://localhost:4873/\""
},
"dependencies": {
"@babel/runtime": "^7.24.7",
"lodash": "^4.17.21",
"marked": "^5.1.2",
"prismjs": "^1.29.0"
},
"devDependencies": {
"@types/chai": "^4.3.16",
"chai": "^4.4.1"
},
"publishConfig": {
"access": "public"
}
}