-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
74 lines (74 loc) · 2.11 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
{
"name": "@mintlify/mdx",
"version": "0.0.49",
"description": "Markdown parser from Mintlify",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"sideEffects": false,
"files": [
"dist"
],
"type": "module",
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
},
"repository": {
"type": "git",
"url": "https://github.com/mintlify/mdx.git"
},
"scripts": {
"prepare": "npm run build",
"build": "tsc --project tsconfig.build.json && yarn copy:css",
"clean:build": "rimraf dist",
"clean:all": "rimraf node_modules .eslintcache && yarn clean:build",
"watch": "tsc --watch",
"type": "tsc --noEmit",
"lint": "eslint . --cache",
"format": "prettier . --write",
"format:check": "prettier . --check",
"copy:css": "cp -r ./src/styles/prism.css ./dist/styles.css"
},
"author": "Mintlify, Inc.",
"license": "MIT",
"devDependencies": {
"@mintlify/eslint-config": "^1.0.4",
"@mintlify/eslint-config-typescript": "^1.0.9",
"@mintlify/prettier-config": "^1.0.1",
"@mintlify/ts-config": "^2.0.2",
"@trivago/prettier-plugin-sort-imports": "^4.3.0",
"@tsconfig/recommended": "1.x",
"@types/react": "^18.3.11",
"@types/react-dom": "^18.3.0",
"@typescript-eslint/eslint-plugin": "6.x",
"@typescript-eslint/parser": "6.x",
"eslint": "8.x",
"eslint-config-prettier": "8.x",
"eslint-plugin-unused-imports": "^3.x",
"prettier": "^3.1.1",
"prettier-plugin-tailwindcss": "^0.6.8",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"rimraf": "^5.0.1",
"typescript": "^5.2.2"
},
"peerDependencies": {
"react": "^18.3.1",
"react-dom": "^18.3.1"
},
"dependencies": {
"@mdx-js/mdx": "^2.1.5",
"@mdx-js/react": "^2.1.3",
"@types/hast": "^3.0.0",
"@types/unist": "^2.0.6",
"hast-util-to-string": "^2.0.0",
"next-mdx-remote": "^4.4.1",
"refractor": "^4.8.0",
"rehype-katex": "^6.0.3",
"remark-gfm": "^3.0.1",
"remark-math": "^5.1.1",
"remark-smartypants": "^2.0.0",
"unified": "^10.0.0",
"unist-util-visit": "^4.1.1"
}
}