{
  "name": "@tryghost/sodo-search",
  "version": "1.8.21",
  "license": "MIT",
  "repository": "https://github.com/TryGhost/Ghost",
  "author": "Ghost Foundation",
  "files": [
    "umd/",
    "LICENSE",
    "README.md"
  ],
  "publishConfig": {
    "access": "public",
    "registry": "https://registry.npmjs.org/"
  },
  "dependencies": {
    "@tryghost/debug": "2.2.0",
    "flexsearch": "0.8.153",
    "react": "17.0.2",
    "react-dom": "17.0.2",
    "@tryghost/i18n": "0.0.0"
  },
  "eslintConfig": {
    "env": {
      "browser": true,
      "jest": true
    },
    "parserOptions": {
      "sourceType": "module",
      "ecmaVersion": 2022
    },
    "extends": [
      "plugin:ghost/browser",
      "plugin:react/recommended"
    ],
    "plugins": [
      "ghost"
    ],
    "rules": {
      "react/prop-types": "off",
      "ghost/filenames/match-regex": [
        "error",
        "^[a-z0-9.-]+$",
        false
      ],
      "ghost/sort-imports-es6-autofix/sort-imports-es6": [
        "error",
        {
          "memberSyntaxSortOrder": [
            "none",
            "all",
            "single",
            "multiple"
          ]
        }
      ]
    },
    "settings": {
      "react": {
        "version": "detect"
      }
    }
  },
  "browserslist": {
    "production": [
      ">0.2%",
      "not dead",
      "not op_mini all"
    ],
    "development": [
      "last 1 chrome version",
      "last 1 firefox version",
      "last 1 safari version"
    ]
  },
  "jest": {
    "coverageReporters": [
      "cobertura",
      "text-summary",
      "html"
    ]
  },
  "devDependencies": {
    "@testing-library/jest-dom": "5.17.0",
    "@testing-library/react": "12.1.5",
    "@vitejs/plugin-react": "4.7.0",
    "@vitest/coverage-v8": "4.1.5",
    "concurrently": "8.2.2",
    "cross-fetch": "4.1.0",
    "eslint": "8.57.1",
    "jsdom": "29.1.1",
    "nock": "13.5.6",
    "tailwindcss": "3.4.18",
    "vite": "7.3.2",
    "vite-plugin-svgr": "4.5.0",
    "vitest": "4.1.5"
  },
  "nx": {
    "tags": [
      "i18n"
    ]
  },
  "scripts": {
    "dev": "concurrently --kill-others --names preview,build,tailwind \"vite preview -l silent\" \"pnpm build:watch\" \"pnpm tailwind\"",
    "build": "vite build && pnpm tailwind:base",
    "build:watch": "vite build --watch",
    "tailwind": "pnpm tailwind:base --watch ",
    "tailwind:base": "tailwindcss -i ./src/index.css -o ./umd/main.css --minify",
    "test": "vitest run",
    "lint": "eslint src --ext .js --cache",
    "preship": "pnpm lint",
    "ship": "node ../../.github/scripts/release-apps.js"
  }
}