-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
67 lines (67 loc) · 1.69 KB
/
package.json
File metadata and controls
67 lines (67 loc) · 1.69 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
{
"name": "react-markdown-with-mdx",
"version": "1.0.0",
"repository": "github:etler/react-markdown-with-mdx",
"license": "MIT",
"type": "module",
"module": "dist/index.js",
"types": "types/index.d.ts",
"exports": {
".": {
"types": "./types/index.d.ts",
"import": "./dist/index.js"
}
},
"files": [
"dist",
"types"
],
"scripts": {
"prepublishOnly": "npm run clean && npm run build && npm run lint && npm run test",
"prepare": "husky && ts-patch install -s",
"clean": "rm -rf dist/ types/",
"build": "tsc",
"dev": "tsc -w",
"lint": "npx eslint",
"test": "tsc -p tests && vitest run --config tests/vitest.config.mts",
"fix": "npx eslint --fix"
},
"dependencies": {
"rehype-mdx-elements": "^1.0.0",
"remark-mdx": "^3.1.0",
"remark-unravel-mdx": "^1.0.0"
},
"peerDependencies": {
"react": ">=18.0.0",
"react-markdown": "^10.0.0",
"zod": "^4.0.17"
},
"peerDependenciesMeta": {
"zod": {
"optional": true
}
},
"devDependencies": {
"@eslint/js": "^9.30.0",
"@testing-library/jest-dom": "^6.0.0",
"@testing-library/react": "^16.0.0",
"@types/node": "^24.0.6",
"@types/react": "^19.1.0",
"@types/react-dom": "^19.1.0",
"eslint": "~9.30.0",
"eslint-config-prettier": "^10.1.5",
"eslint-plugin-prettier": "~5.5.1",
"eslint-plugin-tsdoc": "~0.4.0",
"globals": "^16.0.0",
"husky": "~9.1.7",
"jsdom": "^25.0.0",
"lint-staged": "~15.4.3",
"prettier": "~3.5.2",
"react-dom": "^19.1.0",
"ts-patch": "~3.3.0",
"typescript": "~5.7.3",
"typescript-eslint": "^8.25.0",
"typescript-transform-paths": "~3.5.3",
"vitest": "^3.0.7"
}
}