mdxlayer
Version:
Transform your MDX content into typed, JSON-powered data with flexible schema validation.
95 lines (94 loc) • 2.14 kB
JSON
{
"name": "mdxlayer",
"type": "module",
"version": "1.0.22",
"description": "Transform your MDX content into typed, JSON-powered data with flexible schema validation.",
"bin": {
"mdxlayer": "./dist/cli.js"
},
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
},
"./builder": {
"types": "./dist/builder/index.d.ts",
"import": "./dist/builder/index.js"
},
"./watcher": {
"types": "./dist/watcher/index.d.ts",
"import": "./dist/watcher/index.js"
}
},
"typesVersions": {
"*": {
"*": [
"./dist/index.d.ts"
],
"watcher": [
"./dist/watcher/index.d.ts"
],
"builder": [
"./dist/builder/index.d.ts"
]
}
},
"engines": {
"node": ">=16.0.0"
},
"scripts": {
"check-types": "tsc --noEmit",
"lint": "eslint . --max-warnings 0",
"clean": "rm -rf dist",
"build": "pnpm vite build",
"dev": "pnpm vite build -w",
"version-patch": "npm version patch",
"prepublishOnly": "pnpm clean && pnpm lint && pnpm check-types && pnpm build",
"release": "npm publish --access public"
},
"keywords": [
"mdxlayer",
"mdx",
"json output",
"typed content",
"markdown",
"mdx parser",
"static content",
"node",
"nextjs",
"react"
],
"author": {
"name": "Estarlin R",
"email": "dev@estarlincito.com",
"url": "https://estarlincito.com"
},
"files": [
"LICENSE",
"README.md",
"dist"
],
"license": "MIT",
"homepage": "https://github.com/estarlincito/mdxlayer.js#readme",
"repository": {
"type": "git",
"url": "https://github.com/estarlincito/mdxlayer.js.git"
},
"bugs": {
"url": "https://github.com/estarlincito/mdxlayer.js/issues"
},
"dependencies": {
"@mdx-js/mdx": "^3.1.0",
"chokidar": "^4.0.3",
"esbuild": "^0.25.5",
"fast-glob": "^3.3.3",
"gray-matter": "^4.0.3",
"tyne": "^1.0.13",
"unified": "^11.0.5"
},
"devDependencies": {
"@repo/dev": "workspace:*"
}
}