-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
40 lines (40 loc) · 956 Bytes
/
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
{
"name": "remark-mermaid-nextra",
"version": "0.0.4",
"repository": {
"type": "git",
"url": "https://github.com/mariansimecek/remark-mermaid-nextra.git"
},
"main": "dist/index",
"exports": {
".": {
"import": "./dist/index.mjs",
"types": "./dist/index.d.ts"
}
},
"files": [
"dist"
],
"scripts": {
"build": "tsup"
},
"license": "MIT",
"dependencies": {
"mermaid": "^10.0.2",
"unist-util-visit": "^4.1.2"
},
"devDependencies": {
"@types/mdast": "^3.0.10",
"unified": "^10.1.2",
"tsup": "^6.6.3",
"@types/react": "^18.0.12",
"@types/react-dom": "^18.0.5",
"react": "^18.2.0",
"react-dom": "^18.1.0",
"typescript": "^4.7.3"
},
"peerDependencies": {
"react": "^16.8 || ^17 || ^18",
"react-dom": "^16.8 || ^17 || ^18"
}
}