[READ-ONLY] Mirror of https://github.com/flo-bit/astro-custom-embeds. astro integration that allows you to easily add custom embeds that replace URLs (or directives) in mdx files with your custom comp
0

Configure Feed

Select the types of activity you want to include in your feed.

astro-custom-embeds / package.json
1.1 kB 42 lines
1{ 2 "name": "astro-custom-embeds", 3 "version": "0.0.1", 4 "description": "Astro integration to easily add your own embeds (that replace matching URLs in mdx files)", 5 "type": "module", 6 "exports": { 7 ".": "./src/index.ts" 8 }, 9 "files": [ 10 "src" 11 ], 12 "repository": { 13 "type": "git", 14 "url": "https://github.com/flo-bit/astro-custom-embeds" 15 }, 16 "author": "flo-bit", 17 "license": "MIT", 18 "bugs": { 19 "url": "https://github.com/flo-bit/astro-custom-embeds/issues" 20 }, 21 "dependencies": { 22 "@types/unist": "^2.0.0", 23 "astro-auto-import": "^0.4.2", 24 "remark-directive": "^3.0.0", 25 "unist-util-select": "^4.0.1", 26 "unist-util-visit": "^5.0.0" 27 }, 28 "peerDependencies": { 29 "astro": "^4.0.0 || ^5.0.0-beta" 30 }, 31 "keywords": [ 32 "astro-component", 33 "withastro", 34 "tooling", 35 "utils", 36 "ui", 37 "embeds", 38 "mdx", 39 "markdown" 40 ], 41 "homepage": "https://github.com/flo-bit/astro-custom-embeds#readme" 42}