aboutsummaryrefslogtreecommitdiff
path: root/packages/markdown/remark/package.json
blob: ac6235547f8072a6565a679815898edd6f50d7bf (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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
{
  "name": "@astrojs/markdown-remark",
  "version": "6.0.0-beta.2",
  "type": "module",
  "author": "withastro",
  "license": "MIT",
  "repository": {
    "type": "git",
    "url": "https://github.com/withastro/astro.git",
    "directory": "packages/markdown/remark"
  },
  "bugs": "https://github.com/withastro/astro/issues",
  "homepage": "https://astro.build",
  "main": "./dist/index.js",
  "exports": {
    ".": "./dist/index.js"
  },
  "imports": {
    "#import-plugin": {
      "browser": "./dist/import-plugin-browser.js",
      "default": "./dist/import-plugin-default.js"
    }
  },
  "files": [
    "dist"
  ],
  "scripts": {
    "prepublish": "pnpm build",
    "build": "astro-scripts build \"src/**/*.ts\" && tsc -p tsconfig.json",
    "build:ci": "astro-scripts build \"src/**/*.ts\"",
    "dev": "astro-scripts dev \"src/**/*.ts\"",
    "test": "astro-scripts test \"test/**/*.test.js\""
  },
  "dependencies": {
    "@astrojs/prism": "workspace:*",
    "github-slugger": "^2.0.0",
    "hast-util-from-html": "^2.0.3",
    "hast-util-to-text": "^4.0.2",
    "import-meta-resolve": "^4.1.0",
    "js-yaml": "^4.1.0",
    "mdast-util-definitions": "^6.0.0",
    "rehype-raw": "^7.0.0",
    "rehype-stringify": "^10.0.1",
    "remark-gfm": "^4.0.0",
    "remark-parse": "^11.0.0",
    "remark-rehype": "^11.1.1",
    "remark-smartypants": "^3.0.2",
    "shiki": "^1.22.2",
    "unified": "^11.0.5",
    "unist-util-remove-position": "^5.0.0",
    "unist-util-visit": "^5.0.0",
    "unist-util-visit-parents": "^6.0.1",
    "vfile": "^6.0.3"
  },
  "devDependencies": {
    "@types/estree": "^1.0.6",
    "@types/hast": "^3.0.4",
    "@types/js-yaml": "^4.0.9",
    "@types/mdast": "^4.0.4",
    "@types/unist": "^3.0.3",
    "astro-scripts": "workspace:*",
    "esbuild": "^0.21.5",
    "mdast-util-mdx-expression": "^2.0.1"
  },
  "publishConfig": {
    "provenance": true
  }
}