{
  "name": "next-sanity",
  "version": "0.8.5",
  "description": "Sanity.io toolkit for Next.js",
  "keywords": [
    "sanity",
    "sanity.io",
    "next.js",
    "studio",
    "studio-v3"
  ],
  "homepage": "https://github.com/sanity-io/next-sanity#readme",
  "bugs": {
    "url": "https://github.com/sanity-io/next-sanity/issues"
  },
  "repository": {
    "type": "git",
    "url": "git+ssh://git@github.com/sanity-io/next-sanity.git"
  },
  "license": "MIT",
  "author": "Sanity.io <hello@sanity.io>",
  "sideEffects": false,
  "exports": {
    ".": {
      "source": "./src/index.ts",
      "require": "./dist/index.js",
      "default": "./dist/next-sanity.esm.js"
    },
    "./package.json": "./package.json",
    "./studio": {
      "source": "./src/studio.ts",
      "require": "./lib/cjs/studio.js",
      "default": "./lib/esm/studio.js"
    }
  },
  "main": "dist/index.js",
  "module": "dist/next-sanity.esm.js",
  "typesVersions": {
    "*": {
      "studio": [
        "./lib/dts/studio.d.ts"
      ]
    }
  },
  "typings": "dist/index.d.ts",
  "files": [
    "dist",
    "lib",
    "src"
  ],
  "scripts": {
    "prebuild": "npm run clean && node scripts/preParcel.js",
    "build": "npm run tsdx build && parcel build && tsc --declarationDir lib/dts --project tsconfig.studio.json",
    "clean": "rimraf lib",
    "coverage": "npm test -- --coverage",
    "dev": "next",
    "format": "npm run prettier -- --write . && eslint --fix .",
    "lint": "eslint --max-warnings 0 .",
    "prepublishOnly": "npm run lint && npm run build && node scripts/postParcel",
    "prettier": "npx prettier --ignore-path .gitignore",
    "test": "jest",
    "tsdx": "tsdx --tsconfig ./tsconfig.tsdx.json",
    "type-check": "tsc --noEmit",
    "update:icons": "cp node_modules/@sanity/server/lib/static/favicons/* src/studio && cp src/studio/favicon-{192,512}.png public && cp src/studio/webmanifest.json public/manifest.webmanifest"
  },
  "browserslist": "chrome 59, safari 11, firefox 56, edge 14, ie 11",
  "prettier": {
    "bracketSpacing": false,
    "printWidth": 98,
    "semi": false,
    "singleQuote": true
  },
  "dependencies": {
    "@sanity/client": "^3.4.1",
    "@sanity/groq-store": "^0.4.1",
    "groq": "^2.33.2"
  },
  "devDependencies": {
    "@async-fn/jest": "^1.6.4",
    "@sanity/eslint-config-studio": "^2.0.0",
    "@sanity/semantic-release-preset": "^2.0.2",
    "@testing-library/react-hooks": "^8.0.1",
    "@types/eventsource": "^1.1.9",
    "@types/jest": "^29.1.2",
    "@types/react": "^18.0.21",
    "@types/react-dom": "^18.0.6",
    "@types/styled-components": "^5.1.26",
    "@typescript-eslint/eslint-plugin": "^5.39.0",
    "eslint": "^8.25.0",
    "eslint-config-next": "^12.3.1",
    "eslint-config-prettier": "^8.5.0",
    "eslint-config-sanity": "^6.0.0",
    "eslint-gitignore": "^0.1.0",
    "eslint-plugin-prettier": "^4.2.1",
    "eslint-plugin-simple-import-sort": "^8.0.0",
    "jest": "^29.1.2",
    "jest-environment-jsdom": "^29.1.2",
    "next": "^12.3.1",
    "parcel": "^2.7.0",
    "prettier": "^2.7.1",
    "prettier-plugin-packagejson": "^2.3.0",
    "react": "^18.2.0",
    "react-dom": "^18.2.0",
    "react-is": "^18.2.0",
    "sanity": "3.0.0-purple-unicorn.6",
    "styled-components": "^5.3.6",
    "tsdx": "^0.14.1",
    "typescript": "^4.8.4",
    "write-file-atomic": "^4.0.2"
  },
  "peerDependencies": {
    "react": "^16.3 || ^17 || ^18"
  },
  "engines": {
    "node": ">=12"
  },
  "targets": {
    "cjs": {
      "distDir": "./lib/cjs",
      "source": "./src/studio.ts",
      "outputFormat": "commonjs",
      "isLibrary": true,
      "context": "browser",
      "engines": {
        "browsers": "chrome 64, safari 12, firefox 62, edge 79"
      },
      "includeNodeModules": false
    },
    "esm": {
      "distDir": "./lib/esm",
      "source": "./src/studio.ts",
      "outputFormat": "esmodule",
      "isLibrary": true,
      "context": "browser",
      "engines": {
        "browsers": "chrome 64, safari 12, firefox 62, edge 79"
      },
      "includeNodeModules": false
    }
  }
}
