{
  "name": "@sanity/telemetry",
  "version": "0.8.1",
  "description": "Utils for collecting telemetry data from Sanity CLI and Sanity Studio",
  "keywords": [],
  "homepage": "https://github.com/sanity-io/telemetry#readme",
  "bugs": {
    "url": "https://github.com/sanity-io/telemetry/issues"
  },
  "repository": {
    "type": "git",
    "url": "git+ssh://git@github.com/sanity-io/telemetry.git"
  },
  "license": "MIT",
  "author": "Bjørge Næss <bjoerge@sanity.io>",
  "type": "module",
  "exports": {
    ".": {
      "types": "./dist/index.d.ts",
      "source": "./src/index.ts",
      "require": "./dist/index.cjs",
      "import": "./dist/index.js",
      "default": "./dist/index.js"
    },
    "./react": {
      "types": "./dist/react/index.d.ts",
      "source": "./src/react/index.ts",
      "require": "./dist/react/index.cjs",
      "import": "./dist/react/index.js",
      "default": "./dist/react/index.js"
    },
    "./package.json": "./package.json"
  },
  "main": "./dist/index.cjs",
  "module": "./dist/index.js",
  "source": "./src/index.ts",
  "types": "./dist/index.d.ts",
  "typesVersions": {
    "*": {
      "events": [
        "./dist/events/index.d.ts"
      ],
      "react": [
        "./dist/react/index.d.ts"
      ]
    }
  },
  "files": [
    "dist",
    "src"
  ],
  "lint-staged": {
    "*": [
      "prettier --write --cache --ignore-unknown"
    ]
  },
  "dependencies": {
    "lodash": "^4.17.21",
    "rxjs": "^7.8.1",
    "typeid-js": "^0.3.0"
  },
  "devDependencies": {
    "@sanity/pkg-utils": "^2.3.4",
    "@types/lodash": "^4.14.195",
    "@types/node": "^18.16.16",
    "@types/react": "^18.0.37",
    "@types/react-dom": "^18.0.11",
    "@typescript-eslint/eslint-plugin": "^6.1.0",
    "@typescript-eslint/parser": "^6.1.0",
    "@vitejs/plugin-react": "^4.0.3",
    "eslint": "^8.45.0",
    "eslint-config-prettier": "^8.8.0",
    "eslint-plugin-import": "^2.27.5",
    "eslint-plugin-prettier": "^5.0.0",
    "eslint-plugin-react-hooks": "^4.6.0",
    "eslint-plugin-react-refresh": "^0.3.4",
    "lint-staged": "^13.2.3",
    "npm-run-all": "^4.1.5",
    "prettier": "^3.0.0",
    "prettier-plugin-packagejson": "^2.4.5",
    "react": "^18.3.1",
    "react-dom": "^18.3.1",
    "rimraf": "^5.0.1",
    "typescript": "^5.1.6",
    "vite": "^4.4.5",
    "vite-node": "^0.33.0",
    "vitest": "^0.33.0"
  },
  "peerDependencies": {
    "react": "^18.2 || ^19.0.0"
  },
  "engines": {
    "node": ">=16.0.0"
  },
  "publishConfig": {
    "access": "public"
  },
  "scripts": {
    "build": "run-s clean pkg:build pkg:check",
    "clean": "rimraf dist",
    "format": "prettier --write --cache --ignore-unknown .",
    "pkg:build": "pkg build --strict",
    "pkg:check": "pkg check --strict",
    "pkg:watch": "pkg watch --strict",
    "type:check": "tsc --build",
    "lint": "eslint . --ext .cjs,.js,.ts,.tsx",
    "test": "vitest run",
    "test:watch": "vitest",
    "test:ui": "vitest --ui",
    "coverage": "vitest run --coverage",
    "example:studio": "vite --config examples/react/vite.config.ts examples/react",
    "example:cli": "vite-node --config examples/cli/vite.config.ts examples/cli/cli -- init",
    "examples": "run-p example:*",
    "dev": "run-p pkg:watch test:watch example:studio"
  }
}