UNPKG

mdx-bundler

Version:

Compile and bundle your MDX files and their dependencies. FAST.

89 lines (88 loc) 2.28 kB
{ "name": "mdx-bundler", "version": "5.2.1", "description": "Compile and bundle your MDX files and their dependencies. FAST.", "main": "dist/index.js", "types": "dist/index.d.ts", "type": "module", "keywords": [ "mdx", "bundler", "mdx-bundler", "esbuild", "xdm" ], "author": "Kent C. Dodds <me@kentcdodds.com> (https://kentcdodds.com)", "license": "MIT", "engines": { "node": ">=12", "npm": ">=6" }, "repository": { "type": "git", "url": "https://github.com/kentcdodds/mdx-bundler" }, "bugs": { "url": "https://github.com/kentcdodds/mdx-bundler/issues" }, "homepage": "https://github.com/kentcdodds/mdx-bundler#readme", "files": [ "dist", "client" ], "scripts": { "build": "kcd-scripts build", "postbuild": "node ./other/cjs-ify.js", "lint": "kcd-scripts lint", "setup": "npm install && npm run validate -s", "test": "c8 -r text -r lcov uvu -i setup-tests.js src/__tests__", "typecheck": "kcd-scripts typecheck", "validate": "kcd-scripts validate" }, "dependencies": { "@babel/runtime": "^7.14.6", "@esbuild-plugins/node-resolve": "^0.1.4", "@fal-works/esbuild-plugin-global-externals": "^2.1.2", "gray-matter": "^4.0.3", "remark-frontmatter": "^3.0.0", "remark-mdx-frontmatter": "^1.0.1", "uuid": "^8.3.2", "xdm": "^1.12.2" }, "peerDependencies": { "esbuild": "0.11.x || 0.12.x" }, "devDependencies": { "@testing-library/react": "^12.0.0", "@types/jsdom": "^16.2.13", "@types/react": "^17.0.14", "@types/react-dom": "^17.0.9", "@types/uuid": "^8.3.1", "c8": "^7.8.0", "cross-env": "^7.0.3", "esbuild": "^0.12.15", "jsdom": "^16.6.0", "kcd-scripts": "^11.1.0", "left-pad": "^1.3.0", "mdx-test-data": "^1.0.1", "react": "^17.0.2", "react-dom": "^17.0.2", "remark-mdx-images": "^1.0.3", "typescript": "^4.3.5", "uvu": "^0.5.1" }, "eslintConfig": { "extends": "./node_modules/kcd-scripts/eslint.js", "rules": { "import/extensions": "off", "@typescript-eslint/no-unsafe-assignment": "off", "max-lines-per-function": "off" } }, "eslintIgnore": [ "node_modules", "coverage", "dist", "*.d.ts" ] }