UNPKG

markdown-it-obsidian-callouts

Version:
70 lines (69 loc) โ€ข 2.22 kB
{ "name": "markdown-it-obsidian-callouts", "version": "0.3.3", "description": "Support Obsidian callouts and admonitions", "author": "Erin Schnabel <ebullientworks@gmail.com>", "funding": "https://www.buymeacoffee.com/ebullient", "license": "Apache-2.0", "bugs": "https://github.com/ebullient/markdown-it-obsidian-callouts/issues", "homepage": "https://github.com/ebullient/markdown-it-obsidian-callouts#readme", "repository": { "type": "git", "url": "git+https://github.com/ebullient/markdown-it-obsidian-callouts.git" }, "files": [ "dist", "src" ], "keywords": [ "markdown-it-plugin", "markdown-it", "markdown", "callouts", "admonitions", "obsidian" ], "type": "module", "main": "dist/mdit-obsidian-callouts.cjs", "module": "dist/mdit-obsidian-callouts.js", "exports": { ".": { "import": "./dist/mdit-obsidian-callouts.js", "require": "./dist/mdit-obsidian-callouts.cjs" } }, "scripts": { "build": "npm run build:css && vite build", "build:css": "npm run build:scss && npm run build:mincss", "build:scss": "sass style/index.scss style/index.css", "build:mincss": "sass --style=compressed style/index.scss style/index.min.css", "build:js": "vite build", "dev": "vitest", "check": "npx biome check .", "format": "npx biome format .", "lint": "npx biome lint .", "preversion": "npm run test && npm run build", "version": "auto-changelog -p", "release-notes": "run() { auto-changelog --stdout --hide-credit --hide-empty-releases --template .github/changelog.hbs -v $1 --starting-version $1 > release-notes.md; }; run", "test": "vitest --run --silent=false" }, "peerDependencies": { "markdown-it": "^14.0.0" }, "devDependencies": { "@biomejs/biome": "2.2.4", "@types/markdown-it": "^14.0.1", "@types/node": "^24.0.3", "auto-changelog": "^2.4.0", "markdown-it-testgen": "^0.1.6", "sass": "^1.85.1", "typescript": "^5.3.3", "vite": "^7.0.6", "vitest": "^3.0.2" }, "auto-changelog": { "backfillLimit": false, "commitLimit": false, "ignoreCommitPattern": "(๐Ÿ”–|๐Ÿ”จ|๐Ÿงน|changelog|release|Update README).*" } }