{
  "version": "2.1.3",
  "name": "@imgix/gatsby",
  "description": "The official imgix plugin to apply imgix transformations and optimisations to images in Gatsby at build-time or request-time",
  "author": "Frederick Fogerty <frederick@imgix.com>",
  "license": "BSD-2-Clause",
  "repository": "https://github.com/imgix/gatsby.git",
  "private": false,
  "main": "./dist/index.js",
  "types": "./dist/index.d.ts",
  "publishConfig": {
    "access": "public"
  },
  "contributors": [
    "Angelo Ashmore <angelo.ashmore@walltowall.com>"
  ],
  "scripts": {
    "build:watch": "tsc --build --watch",
    "build": "tsc",
    "dev:start": "cd test/dev-and-e2e && gatsby clean && gatsby develop",
    "lint:ci": "prettier --check .",
    "lint": "prettier --write .",
    "load-env": "source .env",
    "nodemon:dev": "nodemon --delay 1 -w dist -x \"yarn run sync:e2e && yarn run dev:start\"",
    "nodemon:e2e": "nodemon --delay 1 -w dist -x \"yarn run test:e2e:ci\"",
    "prepare": "yarn build",
    "prepublishOnly": "yarn build",
    "sync:e2e:watch": "nodemon -w dist -x \"msync s && rm -rf test/dev-and-e2e/node_modules/@imgix/gatsby/test/\"",
    "sync:e2e": "msync s && rm -rf test/dev-and-e2e/node_modules/@imgix/gatsby/test/",
    "tdd:e2e": "echo 'Run \"npm run sync:e2e:watch\" in a separate terminal window' && yarn test:e2e",
    "tdd:unit": "yarn jest --watch --setupFiles dotenv/config",
    "tdd": "run-p tdd:unit tdd:e2e",
    "test:e2e:ci": "yarn run sync:e2e && cd test/dev-and-e2e && yarn run test:e2e:ci",
    "test:e2e": "cd test/dev-and-e2e && yarn run test:e2e",
    "test:unit": "yarn jest",
    "test": "run-s test:unit test:e2e:ci"
  },
  "peerDependencies": {
    "gatsby": "^2 || ^3 || ^4 || ^5",
    "gatsby-image": "^2 || ^3",
    "gatsby-plugin-image": "^1 || ^2 || ^3"
  },
  "resolutions": {
    "chalk": "^4",
    "graphql": "^16.6.0",
    "graphql-compose": "^9.0.0",
    "webpack": "5.74.0"
  },
  "dependencies": {
    "@imgix/js-core": "3.6.0",
    "camel-case": "^4.1.2",
    "common-tags": "^1.8.0",
    "debug": "^4.3.1",
    "graphql-compose": "^9.0.0",
    "imgix-url-params": "^11.15.0",
    "joi": "^17.6.0",
    "jsuri": "^1.3.1",
    "lodash.get": "^4.4.2",
    "node-fetch": "^2.6.0",
    "ramda": "^0.27.1",
    "read-pkg-up": "^9.0.0"
  },
  "devDependencies": {
    "@babel/core": "7.19.6",
    "@babel/eslint-parser": "7.19.1",
    "@google/semantic-release-replace-plugin": "1.1.0",
    "@semantic-release/changelog": "6.0.1",
    "@semantic-release/git": "10.0.1",
    "@types/common-tags": "1.8.1",
    "@types/is-base64": "1.1.1",
    "@types/jest": "27.5.2",
    "@types/jsuri": "1.3.30",
    "@types/lodash.get": "4.4.7",
    "@types/node-fetch": "2.6.2",
    "@types/ramda": "0.27.44",
    "babel-eslint": "10.1.0",
    "conventional-changelog-conventionalcommits": "4.6.3",
    "cross-env": "7.0.3",
    "eslint": "8.22.0",
    "gatsby": "5.3.2",
    "gatsby-image": "^3.11.0",
    "gatsby-plugin-image": "3.3.2",
    "gatsby-plugin-sharp": "5.3.2",
    "gatsby-source-filesystem": "5.3.1",
    "graphql": "^16.6.0",
    "graphql-tag": "2.12.6",
    "is-base64": "1.1.0",
    "jest": "27.5.1",
    "marked": "4.1.1",
    "msync": "2.5.10",
    "prettier": "2.2.1",
    "react": "18.2.0",
    "react-dom": "18.2.0",
    "read-pkg": "5.2.0",
    "semantic-release": "19.0.5",
    "ts-jest": "27.1.5",
    "typescript": "4.7.4",
    "webpack": "5.74.0",
    "yarn-run-all": "3.1.1"
  },
  "release": {
    "branches": [
      "main",
      {
        "name": "next",
        "channel": "next",
        "prerelease": "rc"
      },
      {
        "name": "beta",
        "channel": "beta",
        "prerelease": true
      },
      {
        "name": "alpha",
        "channel": "alpha",
        "prerelease": true
      }
    ],
    "plugins": [
      [
        "@semantic-release/commit-analyzer",
        {
          "releaseRules": [
            {
              "type": "docs",
              "release": "patch"
            },
            {
              "type": "deps",
              "scope": "deps",
              "release": "patch"
            }
          ]
        }
      ],
      [
        "@google/semantic-release-replace-plugin",
        {
          "replacements": [
            {
              "files": [
                "src/common/constants.ts"
              ],
              "from": "const VERSION = '.*'",
              "to": "const VERSION = '${nextRelease.version}'",
              "results": [
                {
                  "file": "src/common/constants.ts",
                  "hasChanged": true,
                  "numMatches": 1,
                  "numReplacements": 1
                }
              ],
              "countMatches": true
            }
          ]
        }
      ],
      [
        "@semantic-release/release-notes-generator",
        {
          "preset": "conventionalcommits",
          "writerOpts": {
            "types": [
              {
                "type": "feat",
                "section": "Features"
              },
              {
                "type": "fix",
                "section": "Bug Fixes"
              },
              {
                "type": "docs",
                "section": "Documentation",
                "hidden": false
              },
              {
                "type": "deps",
                "section": "Dependency Updates",
                "hidden": false
              },
              {
                "type": "chore",
                "hidden": true
              },
              {
                "type": "style",
                "hidden": true
              },
              {
                "type": "refactor",
                "hidden": true
              },
              {
                "type": "perf",
                "hidden": true
              },
              {
                "type": "test",
                "hidden": true
              }
            ]
          }
        }
      ],
      "@semantic-release/changelog",
      "@semantic-release/npm",
      [
        "@semantic-release/git",
        {
          "assets": [
            "src/**",
            "package.json",
            "CHANGELOG.md"
          ],
          "message": "chore(release): ${nextRelease.version}\n\n${nextRelease.notes} [skip ci]"
        }
      ],
      "@semantic-release/github"
    ]
  },
  "files": [
    "dist",
    "src",
    "types",
    "CHANGELOG.md",
    "fragments.js",
    "gatsby*.js",
    "LICENSE",
    "package.json",
    "README.md"
  ],
  "keywords": [
    "blur-up",
    "cdn",
    "fixed",
    "fluid",
    "gatsby-image",
    "gatsby-plugin",
    "gatsby",
    "image",
    "imgix",
    "optimise",
    "optimize",
    "placeholder",
    "responsive",
    "transform",
    "webp"
  ]
}
