61 lines
1.4 KiB
JSON
Executable File
61 lines
1.4 KiB
JSON
Executable File
{
|
|
"name": "remark-mdx",
|
|
"version": "3.0.1",
|
|
"description": "remark plugin to support MDX syntax",
|
|
"license": "MIT",
|
|
"keywords": [
|
|
"javascript",
|
|
"jsx",
|
|
"markdown",
|
|
"mdast",
|
|
"mdx",
|
|
"plugin",
|
|
"remark",
|
|
"remark-plugin",
|
|
"unified",
|
|
"xml"
|
|
],
|
|
"homepage": "https://mdxjs.com",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/mdx-js/mdx",
|
|
"directory": "packages/remark-mdx/"
|
|
},
|
|
"bugs": "https://github.com/mdx-js/mdx/issues",
|
|
"funding": {
|
|
"type": "opencollective",
|
|
"url": "https://opencollective.com/unified"
|
|
},
|
|
"author": "Titus Wormer <tituswormer@gmail.com> (https://wooorm.com)",
|
|
"contributors": [
|
|
"Titus Wormer <tituswormer@gmail.com> (https://wooorm.com)",
|
|
"Christian Murphy <christian.murphy.42@gmail.com>"
|
|
],
|
|
"type": "module",
|
|
"sideEffects": false,
|
|
"exports": "./index.js",
|
|
"files": [
|
|
"lib/",
|
|
"index.d.ts.map",
|
|
"index.d.ts",
|
|
"index.js"
|
|
],
|
|
"dependencies": {
|
|
"mdast-util-mdx": "^3.0.0",
|
|
"micromark-extension-mdxjs": "^3.0.0"
|
|
},
|
|
"devDependencies": {},
|
|
"scripts": {
|
|
"test": "npm run test-coverage",
|
|
"test-api": "node --conditions development test/index.js",
|
|
"test-coverage": "c8 --100 --reporter lcov npm run test-api"
|
|
},
|
|
"xo": {
|
|
"prettier": true,
|
|
"rules": {
|
|
"logical-assignment-operators": "off",
|
|
"n/file-extension-in-import": "off"
|
|
}
|
|
}
|
|
}
|