86 lines
2.1 KiB
JSON
Raw Normal View History

2026-05-31 13:21:13 +02:00
{
"name": "markdown-it-mdc",
"type": "module",
"version": "0.2.12",
"description": "Markdown Components (MDC) support for markdown-it",
"author": "Anthony Fu <anthonyfu117@hotmail.com>",
"license": "MIT",
"funding": "https://github.com/sponsors/antfu",
"homepage": "https://github.com/nuxt-content/markdown-it-mdc#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/nuxt-content/markdown-it-mdc.git"
},
"bugs": "https://github.com/nuxt-content/markdown-it-mdc/issues",
"keywords": [
"markdown",
"markdown-it-plugin"
],
"sideEffects": false,
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.mjs"
}
},
"main": "./dist/index.mjs",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"typesVersions": {
"*": {
"*": [
"./dist/*",
"./dist/index.d.ts"
]
}
},
"files": [
"dist"
],
"peerDependencies": {
"@types/markdown-it": "*",
"markdown-it": "^14.0.0"
},
"dependencies": {
"yaml": "^2.8.2"
},
"devDependencies": {
"@antfu/eslint-config": "^7.4.2",
"@antfu/ni": "^28.2.0",
"@antfu/utils": "^9.3.0",
"@mdit-vue/plugin-component": "^3.0.2",
"@mdit-vue/plugin-frontmatter": "^3.0.2",
"@types/markdown-it-container": "^4.0.0",
"@types/node": "^25.2.2",
"bumpp": "^10.4.1",
"eslint": "^10.0.0",
"lint-staged": "^16.2.7",
"markdown-it": "^14.1.0",
"markdown-it-container": "^4.0.0",
"markdown-it-task-checkbox": "^1.0.6",
"pnpm": "^10.29.2",
"prettier": "^3.8.1",
"scule": "^1.3.0",
"simple-git-hooks": "^2.13.1",
"tsx": "^4.21.0",
"typescript": "^5.9.3",
"unbuild": "^3.6.1",
"vite": "^7.3.1",
"vitest": "^4.0.18"
},
"simple-git-hooks": {
"pre-commit": "pnpm lint-staged"
},
"lint-staged": {
"*": "eslint --fix"
},
"scripts": {
"build": "unbuild",
"dev": "unbuild --stub",
"lint": "eslint .",
"release": "bumpp",
"start": "tsx src/index.ts",
"test": "vitest",
"typecheck": "tsc --noEmit"
}
}