7583a8b42a
* fix: simplify astro-scripts build * fix: remove source-map-support, add missing `.js` extensions * refactor: use `module` for `@astrojs/markdown-support` * fix: missing `.js` extension * fix: missed @astrojs/parser * fix: remove old file * fix: merge conflict * fix: CJS weirdness
40 lines
1.1 KiB
JSON
40 lines
1.1 KiB
JSON
{
|
|
"name": "@astrojs/markdown-support",
|
|
"version": "0.2.0",
|
|
"main": "./dist/index.js",
|
|
"type": "module",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/snowpackjs/astro.git",
|
|
"directory": "packages/markdown-support"
|
|
},
|
|
"exports": {
|
|
".": "./dist/index.js"
|
|
},
|
|
"scripts": {
|
|
"prepublish": "yarn build",
|
|
"build": "astro-scripts build \"src/**/*.ts\" && tsc -p tsconfig.json",
|
|
"dev": "astro-scripts dev \"src/**/*.ts\""
|
|
},
|
|
"dependencies": {
|
|
"@silvenon/remark-smartypants": "^1.0.0",
|
|
"gray-matter": "^4.0.2",
|
|
"mdast-util-mdx-expression": "^1.0.0",
|
|
"micromark-extension-mdx-expression": "^1.0.0",
|
|
"remark-footnotes": "^3.0.0",
|
|
"remark-gfm": "^1.0.0",
|
|
"remark-parse": "^9.0.0",
|
|
"remark-rehype": "^8.1.0",
|
|
"unified": "^9.2.1",
|
|
"unist-util-map": "^3.0.0"
|
|
},
|
|
"devDependencies": {
|
|
"@types/github-slugger": "^1.3.0",
|
|
"github-slugger": "^1.3.0",
|
|
"rehype-parse": "^7.0.1",
|
|
"rehype-raw": "^5.1.0",
|
|
"rehype-stringify": "^8.0.0",
|
|
"unified": "^9.2.1",
|
|
"unist-util-visit": "^3.1.0"
|
|
}
|
|
}
|