{
    "name": "@aws/mynah-ui",
    "displayName": "AWS Mynah UI",
    "version": "4.40.3",
    "description": "AWS Toolkit VSCode and Intellij IDE Extension Mynah UI",
    "publisher": "Amazon Web Services",
    "license": "Apache License 2.0",
    "readme": "README.md",
    "main": "./dist/main.js",
    "repository": {
        "type": "git",
        "url": "https://github.com/aws/mynah-ui"
    },
    "scripts": {
        "clean": "npm run clean:dist && npm run clean:node",
        "clean:dist": "find . -name 'dist' -type d -prune -exec rm -rf '{}' +",
        "clean:node": "find . -name 'node_modules' -type d -prune -exec rm -rf '{}' +",
        "build": "webpack --config webpack.config.js --mode production",
        "packdemo": "cd ./example && npm run pack",
        "watch": "webpack --config webpack.config.js --mode development --watch",
        "watch:example": "cd ./example && npm run watch",
        "watch:web": "run-p watch watch:example serve:example",
        "serve:example": "live-server --port=9000 example/dist",
        "start:example": "cd ./example && npm install && npm run build && cd .. && npm run watch:web",
        "dev": "npm ci && npm run build && cd ./ui-tests && npm install && cd .. && npm run start:example",
        "lint-fix": "npx eslint \"./**\" --fix",
        "lint": "npx eslint \"./**\"",
        "format:check": "npx prettier --check .",
        "format:write": "npx prettier --write .",
        "docker:clean": "docker rm -f mynah-ui-e2e-container || true",
        "docker:build": "node scripts/docker-build.js",
        "docker:run": "docker run --name mynah-ui-e2e-container -e WEBKIT_FORCE_COMPLEX_TEXT=0 -e WEBKIT_DISABLE_COMPOSITING_MODE=1 mynah-ui-e2e",
        "docker:run:chromium": "docker run -e BROWSER=chromium --name mynah-ui-e2e-container mynah-ui-e2e",
        "docker:run:webkit": "docker run -e BROWSER=webkit -e WEBKIT_FORCE_COMPLEX_TEXT=0 -e WEBKIT_DISABLE_COMPOSITING_MODE=1 --name mynah-ui-e2e-container mynah-ui-e2e",
        "docker:extract": "docker cp mynah-ui-e2e-container:/app/ui-tests/__results__ ./ui-tests/ && docker cp mynah-ui-e2e-container:/app/ui-tests/__snapshots__ ./ui-tests/__results__/__snapshots__",
        "playwright:setup": "node scripts/setup-playwright.js",
        "playwright:version": "node scripts/get-playwright-version.js",
        "playwright:pre-test": "node scripts/pre-test-setup.js",
        "tests:e2e": "npm run docker:clean && npm run docker:build && npm run docker:run",
        "tests:e2e:chromium": "npm run docker:clean && npm run docker:build && npm run docker:run:chromium",
        "tests:e2e:webkit": "npm run docker:clean && npm run docker:build && npm run docker:run:webkit",
        "tests:e2e:webkit:local": "npm run playwright:pre-test && cd ui-tests && npm run e2e:webkit",
        "tests:webkit:check": "node scripts/test-webkit.js",
        "tests:e2e:local": "npm run playwright:pre-test && cd ui-tests && npm run e2e",
        "tests:e2e:trace": "cd ./ui-tests && npm run trace",
        "tests:unit": "jest --collect-coverage",
        "api-docs": "npx typedoc src/main.ts --out ./api-docs",
        "api-doc-deploy": "npx typedoc src/main.ts --out ./example/dist/api-doc",
        "postinstall": "node postinstall.js",
        "prepare": "npx husky"
    },
    "dependencies": {
        "escape-html": "^1.0.3",
        "highlight.js": "^11.11.0",
        "just-clone": "^6.2.0",
        "marked": "^14.1.0",
        "sanitize-html": "^2.12.1",
        "unescape-html": "^1.1.0"
    },
    "peerDependencies": {
        "escape-html": "^1.0.3",
        "highlight.js": "^11.11.0",
        "just-clone": "^6.2.0",
        "marked": "^14.1.0",
        "sanitize-html": "^2.12.1",
        "unescape-html": "^1.1.0"
    },
    "devDependencies": {
        "@babel/core": "^7.23.5",
        "@types/eslint": "^8.44.3",
        "@types/eslint-scope": "3.7.0",
        "@types/estree": "0.0.49",
        "@types/glob": "7.1.3",
        "@types/jest": "^29.5.5",
        "@types/json-schema": "7.0.7",
        "@types/minimatch": "^5.1.2",
        "@types/node": "^24.0.0",
        "@types/sanitize-html": "^2.11.0",
        "@typescript-eslint/eslint-plugin": "^5.34.0",
        "@typescript-eslint/parser": "^5.62.0",
        "babel-jest": "^29.7.0",
        "core-js": "^3.33.3",
        "css-loader": "6.6.0",
        "eslint": "^8.22.0",
        "eslint-config-standard-with-typescript": "22.0.0",
        "eslint-plugin-header": "^3.1.1",
        "eslint-plugin-import": "2.26.0",
        "eslint-plugin-n": "15.2.5",
        "eslint-plugin-no-null": "^1.0.2",
        "eslint-plugin-prettier": "^5.0.0",
        "eslint-plugin-promise": "6.0.0",
        "fast-check": "^4.6.0",
        "husky": "^9.1.6",
        "jest": "^29.7.0",
        "jest-environment-jsdom": "^29.7.0",
        "jest-svg-transformer": "^1.0.0",
        "npm-run-all": "^4.1.5",
        "prettier": "^3.0.3",
        "sass": "1.49.8",
        "sass-loader": "12.6.0",
        "style-loader": "3.3.1",
        "svg-url-loader": "^8.0.0",
        "ts-jest": "^29.1.1",
        "ts-loader": "^9.4.4",
        "ts-node": "^10.9.1",
        "typedoc": "^0.25.13",
        "typescript": "^5.1.6",
        "webpack": "5.94.0",
        "webpack-cli": "4.7.2"
    }
}
