package.json 1.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172
  1. {
  2. "name": "@mdx-js/react",
  3. "version": "2.3.0",
  4. "description": "React context for MDX",
  5. "license": "MIT",
  6. "keywords": [
  7. "mdx",
  8. "markdown",
  9. "react",
  10. "jsx",
  11. "remark",
  12. "mdxast"
  13. ],
  14. "homepage": "https://mdxjs.com",
  15. "repository": {
  16. "type": "git",
  17. "url": "https://github.com/mdx-js/mdx",
  18. "directory": "packages/react"
  19. },
  20. "bugs": "https://github.com/mdx-js/mdx/issues",
  21. "funding": {
  22. "type": "opencollective",
  23. "url": "https://opencollective.com/unified"
  24. },
  25. "author": "John Otander <johnotander@gmail.com> (https://johno.com)",
  26. "contributors": [
  27. "John Otander <johnotander@gmail.com> (https://johno.com)",
  28. "Tim Neutkens <tim@vercel.com>",
  29. "Matija Marohnić <matija.marohnic@gmail.com>",
  30. "Titus Wormer <tituswormer@gmail.com> (https://wooorm.com)",
  31. "JounQin <admin@1stg.me> (https://www.1stg.me)",
  32. "Christian Murphy <christian.murphy.42@gmail.com>"
  33. ],
  34. "type": "module",
  35. "sideEffects": false,
  36. "main": "index.js",
  37. "types": "index.d.ts",
  38. "files": [
  39. "lib/",
  40. "index.d.ts",
  41. "index.js"
  42. ],
  43. "dependencies": {
  44. "@types/mdx": "^2.0.0",
  45. "@types/react": ">=16"
  46. },
  47. "peerDependencies": {
  48. "react": ">=16"
  49. },
  50. "devDependencies": {
  51. "@mdx-js/mdx": "^2.0.0",
  52. "@types/react": "^18.0.0",
  53. "@types/react-dom": "^18.0.0",
  54. "react": "^18.0.0",
  55. "react-dom": "^18.0.0"
  56. },
  57. "scripts": {
  58. "prepack": "npm run build",
  59. "build": "tsc --build --clean && tsc --build && type-coverage",
  60. "test-api": "node --no-warnings --experimental-loader=../../script/jsx-loader.js ../../node_modules/uvu/bin.js test \"\\.jsx?$\"",
  61. "test-coverage": "c8 --check-coverage --100 --reporter lcov npm run test-api",
  62. "test": "npm run build && npm run test-coverage"
  63. },
  64. "xo": false,
  65. "typeCoverage": {
  66. "atLeast": 100,
  67. "detail": true,
  68. "strict": true,
  69. "ignoreCatch": true
  70. },
  71. "gitHead": "bf7deab69996449cb99c2217dff75e65855eb2c1"
  72. }