{
    "version": "0.3.5",
    "name": "@quarto/jupyterlab-quarto",
    "description": "Jupyter extension to enable authoring of Quarto documents within Jupyterlab Notebooks.",
    "keywords": [
        "jupyter",
        "jupyterlab",
        "jupyterlab-extension"
    ],
    "homepage": "https://github.com/quarto-dev/jupyterlab-quarto",
    "bugs": {
        "url": "https://github.com/quarto-dev/jupyterlab-quarto/issues"
    },
    "license": "BSD-3-Clause",
    "author": {
        "name": "Charles Teague",
        "email": "charles@posit.co"
    },
    "files": [
        "lib/**/*.{d.ts,eot,gif,html,jpg,js,js.map,json,png,svg,woff2,ttf}",
        "style/**/*.{css,js,eot,gif,html,jpg,json,png,svg,woff2,ttf}"
    ],
    "main": "lib/index.js",
    "types": "lib/index.d.ts",
    "style": "style/index.css",
    "repository": {
        "type": "git",
        "url": "https://github.com/quarto-dev/jupyterlab-quarto.git"
    },
    "scripts": {
        "build": "jlpm build:lib && jlpm build:labextension:dev",
        "build:prod": "jlpm clean && jlpm build:lib:prod && jlpm build:labextension",
        "build:labextension": "jupyter labextension build .",
        "build:labextension:dev": "jupyter labextension build --development True .",
        "build:lib": "tsc --sourceMap",
        "build:lib:prod": "tsc",
        "clean": "jlpm clean:lib",
        "clean:lib": "rimraf lib tsconfig.tsbuildinfo",
        "clean:lintcache": "rimraf .eslintcache .stylelintcache",
        "clean:labextension": "rimraf jupyterlab-quarto/labextension jupyterlab-quarto/_version.py",
        "clean:all": "jlpm clean:lib && jlpm clean:labextension && jlpm clean:lintcache",
        "eslint": "jlpm eslint:check --fix",
        "eslint:check": "eslint . --cache --ext .ts,.tsx",
        "install:extension": "jlpm build",
        "lint": "jlpm stylelint && jlpm prettier && jlpm eslint",
        "lint:check": "jlpm stylelint:check && jlpm prettier:check && jlpm eslint:check",
        "prettier": "jlpm prettier:base --write --list-different",
        "prettier:base": "prettier \"**/*{.ts,.tsx,.js,.jsx,.css,.json,.md}\"",
        "prettier:check": "jlpm prettier:base --check",
        "stylelint": "jlpm stylelint:check --fix",
        "stylelint:check": "stylelint --cache \"style/**/*.css\"",
        "test": "jest --coverage",
        "watch": "run-p watch:src watch:labextension",
        "watch:src": "tsc -w --sourceMap",
        "watch:labextension": "jupyter labextension watch ."
    },
    "dependencies": {
        "@jupyterlab/application": "^4.0.0",
        "@jupyterlab/codemirror": "^4.0.0",
        "markdown-it": "^12.2.3",
        "markdown-it-attrs": "^4.1.6",
        "markdown-it-deflist": "^2.0.3",
        "markdown-it-footnote": "^3.0.2",
        "markdown-it-implicit-figures": "^0.11.0",
        "markdown-it-sub": "^1.0.0",
        "markdown-it-sup": "^1.0.0",
        "markdown-it-task-lists": "^1.3.0",
        "mermaid": "^9.1.7",
        "wcwidth": "^1.0.1"
    },
    "devDependencies": {
        "@jupyterlab/builder": "^4.0.0",
        "@jupyterlab/testutils": "^4.0.0",
        "@types/codemirror": "^5.60.8",
        "@types/d3": "^7.4.0",
        "@types/dompurify": "^3.0.2",
        "@types/jest": "^29.2.0",
        "@types/js-yaml": "^4.0.5",
        "@types/json-schema": "^7.0.11",
        "@types/markdown-it": "^12.2.3",
        "@types/markdown-it-attrs": "^4.1.0",
        "@types/mermaid": "^9.1.0",
        "@types/react": "^18.0.26",
        "@types/wcwidth": "^1.0.0",
        "@typescript-eslint/eslint-plugin": "^5.55.0",
        "@typescript-eslint/parser": "^5.55.0",
        "css-loader": "^6.7.1",
        "eslint": "^8.36.0",
        "eslint-config-prettier": "^8.7.0",
        "eslint-plugin-prettier": "^4.2.1",
        "jest": "^29.2.0",
        "npm-run-all": "^4.1.5",
        "prettier": "^2.8.7",
        "rimraf": "^4.4.1",
        "source-map-loader": "^1.0.2",
        "style-loader": "^3.3.1",
        "stylelint": "^14.9.1",
        "stylelint-config-prettier": "^9.0.4",
        "stylelint-config-recommended": "^8.0.0",
        "stylelint-config-standard": "^26.0.0",
        "stylelint-prettier": "^2.0.0",
        "typescript": "~5.0.2",
        "yjs": "^13.5.0"
    },
    "sideEffects": [
        "style/*.css",
        "style/index.js"
    ],
    "styleModule": "style/index.js",
    "publishConfig": {
        "access": "public"
    },
    "jupyterlab": {
        "extension": true,
        "outputDir": "jupyterlab-quarto/labextension",
        "disabledExtensions": [
            "jupyterlab-myst:plugin",
            "jupyterlab-myst:legacyPlugin",
            "jupyterlab-myst:executor"
        ]
    },
    "eslintIgnore": [
        "node_modules",
        "dist",
        "coverage",
        "**/*.d.ts",
        "tests",
        "**/__tests__",
        "ui-tests"
    ],
    "eslintConfig": {
        "extends": [
            "eslint:recommended",
            "plugin:@typescript-eslint/eslint-recommended",
            "plugin:@typescript-eslint/recommended",
            "plugin:prettier/recommended"
        ],
        "parser": "@typescript-eslint/parser",
        "parserOptions": {
            "project": "tsconfig.json",
            "sourceType": "module"
        },
        "plugins": [
            "@typescript-eslint"
        ],
        "rules": {
            "@typescript-eslint/no-unused-vars": [
                "warn",
                {
                    "args": "none"
                }
            ],
            "@typescript-eslint/no-explicit-any": "off",
            "@typescript-eslint/no-namespace": "off",
            "@typescript-eslint/no-use-before-define": "off",
            "@typescript-eslint/quotes": [
                "error",
                "single",
                {
                    "avoidEscape": true,
                    "allowTemplateLiterals": false
                }
            ],
            "curly": [
                "error",
                "all"
            ],
            "eqeqeq": "error",
            "prefer-arrow-callback": "error"
        }
    },
    "prettier": {
        "singleQuote": true,
        "trailingComma": "none",
        "arrowParens": "avoid",
        "endOfLine": "auto"
    },
    "stylelint": {
        "extends": [
            "stylelint-config-recommended",
            "stylelint-config-standard",
            "stylelint-prettier/recommended"
        ],
        "rules": {
            "property-no-vendor-prefix": null,
            "selector-no-vendor-prefix": null,
            "value-no-vendor-prefix": null,
            "selector-class-pattern": null
        }
    }
}
