CoolFace
Datasetpublic

basant307/AI_Governance_Project

sourceHugging Faceapache-2.0updated 2mo agoView on Hugging Face
0likes48downloads
package.json168 linesDownload Raw Back to react-markdown
1{2  "author": "Espen Hovlandsdal <espen@hovlandsdal.com>",3  "bugs": "https://github.com/remarkjs/react-markdown/issues",4  "contributors": [5    "Alexander Wallin <office@alexanderwallin.com>",6    "Alexander Wong <admin@alexander-wong.com>",7    "André Staltz <andre@staltz.com>",8    "Angus MacIsaac <angus.macisaac@busbud.com>",9    "Beau Roberts <beau.roberts@autodesk.com>",10    "Charlie Chen <doveccl@live.com>",11    "Christian Murphy <christian.murphy.42@gmail.com>",12    "Christoph Werner <christoph@codepunkt.de>",13    "Danny <dannyharding10@gmail.com>",14    "Dennis S <denis.s@svsg.co>",15    "Espen Hovlandsdal <espen@hovlandsdal.com>",16    "Evan Hensleigh <futuraprime@gmail.com>",17    "Fabian Irsara <info@fabianirsara.com>",18    "Florentin Luca Rieger <florentin.rieger@gmail.com>",19    "Frank <frankieali4@gmail.com>",20    "Igor Kamyshev <garik.novel@gmail.com>",21    "Jack Williams <jsw547@gmail.com>",22    "Jakub Chrzanowski <jakub@chrzanowski.info>",23    "Jeremy Moseley <jeremy@jeremymoseley.net>",24    "Jesse Pinho <jesse@jessepinho.com>",25    "Kelvin Chan <kchan@securitycompass.com>",26    "Kohei Asai <me@axross.io>",27    "Linus Unnebäck <linus@folkdatorn.se>",28    "Marshall Smith <marshall@radialdevgroup.com>",29    "Nathan Bierema <nbierema@gmail.com>",30    "Nicolas Venegas <nvenegas@atlassian.com>",31    "Peng Guanwen <pg999w@outlook.com>",32    "Petr Gazarov <petrgazarov@gmail.com>",33    "Phil Rajchgot <tophil@outlook.com>",34    "Rasmus Eneman <rasmus@eneman.eu>",35    "René Kooi <renee@kooi.me>",36    "Riku Rouvila <riku.rouvila@gmail.com>",37    "Robin Wieruch <wrobin@gmx.net>",38    "Rostyslav Melnychuk <blackswordgc@gmail.com>",39    "Ted Piotrowski <tppiotrowski@gmail.com>",40    "Thibaud Courtoison <do.not.press.enter@gmail.com>",41    "Thomas Lindstrøm <t@hom.as>",42    "Tiago Roldão <focus5.6@gmail.com>",43    "Titus Wormer <tituswormer@gmail.com> (https://wooorm.com)",44    "cerkiewny <mstarzycki@gmail.com>",45    "evoye <rosej@gmx.net>",46    "gRoberts84 <gavin@gav-roberts.co.uk>",47    "mudrz <mudrz@outlook.com>",48    "vanchagreen <vanchagreen@gmail.com>"49  ],50  "dependencies": {51    "@types/hast": "^3.0.0",52    "@types/mdast": "^4.0.0",53    "devlop": "^1.0.0",54    "hast-util-to-jsx-runtime": "^2.0.0",55    "html-url-attributes": "^3.0.0",56    "mdast-util-to-hast": "^13.0.0",57    "remark-parse": "^11.0.0",58    "remark-rehype": "^11.0.0",59    "unified": "^11.0.0",60    "unist-util-visit": "^5.0.0",61    "vfile": "^6.0.0"62  },63  "description": "React component to render markdown",64  "devDependencies": {65    "@types/node": "^22.0.0",66    "@types/react": "^19.0.0",67    "@types/react-dom": "^19.0.0",68    "c8": "^10.0.0",69    "concat-stream": "^2.0.0",70    "esbuild": "^0.25.0",71    "eslint-plugin-react": "^7.0.0",72    "prettier": "^3.0.0",73    "react": "^19.0.0",74    "react-dom": "^19.0.0",75    "rehype-raw": "^7.0.0",76    "rehype-starry-night": "^2.0.0",77    "remark-cli": "^12.0.0",78    "remark-gfm": "^4.0.0",79    "remark-preset-wooorm": "^11.0.0",80    "remark-toc": "^9.0.0",81    "type-coverage": "^2.0.0",82    "typescript": "^5.0.0",83    "xo": "^0.60.0"84  },85  "exports": "./index.js",86  "files": [87    "index.d.ts.map",88    "index.d.ts",89    "index.js",90    "lib/"91  ],92  "funding": {93    "type": "opencollective",94    "url": "https://opencollective.com/unified"95  },96  "keywords": [97    "ast",98    "commonmark",99    "component",100    "gfm",101    "markdown",102    "react",103    "react-component",104    "remark",105    "unified"106  ],107  "license": "MIT",108  "name": "react-markdown",109  "peerDependencies": {110    "@types/react": ">=18",111    "react": ">=18"112  },113  "prettier": {114    "bracketSpacing": false,115    "singleQuote": true,116    "semi": false,117    "tabWidth": 2,118    "trailingComma": "none",119    "useTabs": false120  },121  "remarkConfig": {122    "plugins": [123      "remark-preset-wooorm",124      [125        "remark-lint-no-html",126        false127      ]128    ]129  },130  "repository": "remarkjs/react-markdown",131  "scripts": {132    "build": "tsc --build --clean && tsc --build && type-coverage",133    "format": "remark --frail --output --quiet -- . && prettier --log-level warn --write -- . && xo --fix",134    "test-api": "node --conditions development --experimental-loader=./script/load-jsx.js --no-warnings test.jsx",135    "test-coverage": "c8 --100 --exclude script/ --reporter lcov -- npm run test-api",136    "test": "npm run build && npm run format && npm run test-coverage"137  },138  "sideEffects": false,139  "typeCoverage": {140    "atLeast": 100,141    "strict": true142  },143  "type": "module",144  "version": "9.1.0",145  "xo": {146    "envs": [147      "shared-node-browser"148    ],149    "extends": "plugin:react/jsx-runtime",150    "overrides": [151      {152        "files": [153          "**/*.jsx"154        ],155        "rules": {156          "no-unused-vars": "off"157        }158      }159    ],160    "prettier": true,161    "rules": {162      "complexity": "off",163      "n/file-extension-in-import": "off",164      "unicorn/prevent-abbreviations": "off"165    }166  }167}168 
basant307/AI_Governance_Project · CoolFace