summaryrefslogtreecommitdiff
path: root/packages/integrations/mdx/package.json
blob: 59074be5fd08c7806a9f9fb2a1490e8c300b9319 (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
{
  "name": "@astrojs/mdx",
  "description": "Use MDX within Astro",
  "version": "0.2.0",
  "type": "module",
  "types": "./dist/index.d.ts",
  "author": "withastro",
  "license": "MIT",
  "repository": {
    "type": "git",
    "url": "https://github.com/withastro/astro.git",
    "directory": "packages/integrations/mdx"
  },
  "keywords": [
    "astro-integration",
    "astro-component",
    "renderer",
    "mdx"
  ],
  "bugs": "https://github.com/withastro/astro/issues",
  "homepage": "https://docs.astro.build/en/guides/integrations-guide/mdx/",
  "exports": {
    ".": "./dist/index.js",
    "./package.json": "./package.json"
  },
  "scripts": {
    "build": "astro-scripts build \"src/**/*.ts\" && tsc",
    "build:ci": "astro-scripts build \"src/**/*.ts\"",
    "dev": "astro-scripts dev \"src/**/*.ts\"",
    "test": "mocha --exit --timeout 20000"
  },
  "dependencies": {
    "@mdx-js/rollup": "^2.1.1"
  },
  "devDependencies": {
    "@types/chai": "^4.3.1",
    "@types/mocha": "^9.1.1",
    "@types/yargs-parser": "^21.0.0",
    "astro": "workspace:*",
    "astro-scripts": "workspace:*",
    "chai": "^4.3.6",
    "mocha": "^9.2.2",
    "linkedom": "^0.14.12"
  },
  "engines": {
    "node": "^14.18.0 || >=16.12.0"
  }
}