{
    "name": "@unified-myst/role-extension",
    "version": "0.0.4",
    "description": "Extension to support the MyST role syntax (``{name}`content` ``) in unified",
    "license": "MIT",
    "author": "Chris Sewell <https://github.com/chrisjsewell>",
    "homepage": "https://github.com/executablebooks/unified-myst/tree/main/packages/role-extension#readme",
    "repository": {
        "type": "git",
        "url": "git+https://github.com/executablebooks/unified-myst.git"
    },
    "bugs": {
        "url": "https://github.com/executablebooks/unified-myst/issues"
    },
    "keywords": [
        "myst",
        "unified",
        "mdast",
        "micromark"
    ],
    "type": "module",
    "module": "./dist/module/index.js",
    "types": "./dist/types/index.d.ts",
    "files": [
        "src",
        "dist"
    ],
    "exports": {
        "default": {
            "import": "./dist/module/index.js"
        },
        "development": {
            "import": "./src/index.js"
        }
    },
    "publishConfig": {
        "access": "public"
    },
    "scripts": {
        "clean": "rimraf dist",
        "build:types": "tsc",
        "build:bundles": "rollup -c --failAfterWarnings",
        "build": "npm-run-all -l clean -p build:types build:bundles",
        "prepublishOnly": "npm run build",
        "lint:type-cov": "npm run build:types && type-coverage",
        "lint": "eslint --max-warnings 1 {src,tests}/**/*.js",
        "lint:fix": "eslint --fix src/**/*.js",
        "format": "prettier --write \"{src,tests}/**/*.js\"",
        "test": "node --experimental-vm-modules ../../node_modules/jest/bin/jest.js"
    },
    "dependencies": {
        "micromark-core-commonmark": "^1.0.6"
    },
    "peerDependencies": {
        "micromark": "^3.0.10"
    },
    "devDependencies": {
        "mdast-util-from-markdown": "^1.2.0",
        "micromark-util-symbol": "^1.0.1",
        "micromark-util-types": "^1.0.2",
        "uvu": "^0.5.3"
    },
    "gitHead": "920508d318b5b0f7091a0ea598ddedd6cd204cf9"
}
