summaryrefslogtreecommitdiff
path: root/packages/markdown-support/package.json
blob: 8eb6dca25ad0e4b399239aa92396b96d80d60c8b (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
{
  "name": "@astrojs/markdown-support",
  "version": "0.3.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",
    "github-slugger": "^1.3.0",
    "gray-matter": "^4.0.3",
    "mdast-util-mdx-expression": "^1.1.0",
    "micromark-extension-mdx-expression": "^1.0.0",
    "rehype-raw": "^6.0.0",
    "rehype-stringify": "^9.0.1",
    "remark-footnotes": "^4.0.1",
    "remark-gfm": "^2.0.0",
    "remark-parse": "^10.0.0",
    "remark-rehype": "^9.0.0",
    "remark-slug": "^7.0.0",
    "unified": "^10.1.0",
    "unist-util-map": "^3.0.0",
    "unist-util-visit": "^4.0.0"
  },
  "devDependencies": {
    "@types/github-slugger": "^1.3.0"
  }
}