remark-mdat
Version:
A remark plugin implementing the Markdown Autophagic Template (MDAT) system.
76 lines • 1.97 kB
JSON
{
"name": "remark-mdat",
"version": "1.2.0",
"description": "A remark plugin implementing the Markdown Autophagic Template (MDAT) system.",
"keywords": [
"mdat",
"markdown",
"template",
"comments",
"unist",
"mdast",
"mdast-util",
"syntax-tree",
"remark",
"remark-plugin"
],
"homepage": "https://github.com/kitschpatrol/remark-mdat",
"bugs": "https://github.com/kitschpatrol/remark-mdat/issues",
"repository": {
"type": "git",
"url": "git+https://github.com/kitschpatrol/remark-mdat.git"
},
"license": "MIT",
"author": {
"name": "Eric Mika",
"email": "eric@ericmika.com",
"url": "https://ericmika.com"
},
"type": "module",
"main": "./dist/index.js",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"files": [
"dist/*"
],
"dependencies": {
"@types/mdast": "^4.0.4",
"@types/node": "^20.19.25",
"@types/unist": "^3.0.3",
"picocolors": "^1.1.1",
"type-fest": "^5.2.0",
"unified": "^11.0.5",
"vfile": "^6.0.3",
"zod": "^3.25.76"
},
"devDependencies": {
"@kitschpatrol/shared-config": "^5.8.3",
"bumpp": "^10.3.1",
"cli-table3": "^0.6.5",
"deepmerge-ts": "^7.1.5",
"hast-util-from-html": "^2.0.3",
"json5": "^2.2.3",
"remark": "^15.0.1",
"remark-gfm": "^4.0.1",
"tsdown": "^0.16.3",
"typescript": "~5.9.3",
"unist-util-visit": "^5.0.0",
"vfile-message": "^4.0.3",
"vitest": "^4.0.8"
},
"engines": {
"node": ">=20.19.0"
},
"publishConfig": {
"access": "public"
},
"scripts": {
"build": "tsdown --no-fixed-extension --dts false && tsc -p tsconfig.build.json",
"clean": "git rm -f pnpm-lock.yaml ; git clean -fdX",
"dev": "pnpm run test",
"fix": "ksc fix",
"lint": "ksc lint",
"release": "bumpp --commit 'Release: %s' && pnpm run build && NPM_AUTH_TOKEN=$(op read 'op://Personal/npm/token') && pnpm publish",
"test": "vitest"
}
}