{
  "name": "@oaknational/google-classroom-addon",
  "version": "1.34.0",
  "description": "Components and helpers for the Oak Google Classroom Add-on",
  "exports": {
    "./ui": {
      "import": "./dist/esm/views/index.js",
      "require": "./dist/cjs/views/index.js",
      "types": "./dist/views.d.ts"
    },
    "./server": {
      "import": "./dist/esm/services/index.js",
      "require": "./dist/cjs/services/index.js",
      "types": "./dist/services.d.ts"
    },
    "./types": {
      "import": "./dist/esm/types/index.js",
      "require": "./dist/cjs/types/index.js",
      "types": "./dist/types.d.ts"
    }
  },
  "files": [
    "dist",
    "ui",
    "server",
    "types"
  ],
  "scripts": {
    "build": "rollup -c --bundleConfigAsCjs",
    "build-storybook": "storybook build",
    "check-types": "tsc",
    "format": "prettier '**/*.{j,t}{s,sx}' --write",
    "format:check": "prettier '**/*.{j,t}{s,sx}' --check",
    "format:precommit": "prettier '**/*.{j,t}{s,sx}' --write",
    "lint": "eslint src/**/*",
    "lint:precommit": "eslint src/**/* --fix",
    "prepare": "husky install",
    "prepublishOnly": "./scripts/prepublish.sh",
    "publish:local": "npm run build && yalc publish --no-scripts",
    "storybook": "storybook dev -p 6006",
    "test": "jest --watch --collectCoverage=false",
    "test:ci": "jest",
    "test:snapshot": "jest --collectCoverage=false --updateSnapshot"
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/oaknational/google-classroom-addon.git"
  },
  "author": "",
  "license": "ISC",
  "bugs": {
    "url": "https://github.com/oaknational/google-classroom-addon/issues"
  },
  "homepage": "https://github.com/oaknational/google-classroom-addon#readme",
  "peerDependencies": {
    "@google-cloud/firestore": ">=7.11.2",
    "@googleapis/classroom": "4.9.0",
    "@oaknational/oak-components": "^2.8.0",
    "google-auth-library": "9.15.1",
    "next": ">=15.4.3",
    "react": ">=18.3.1",
    "react-dom": ">=18.3.1",
    "zod": ">=3.25.76",
    "zustand": ">=5.0.9"
  },
  "dependencies": {
    "iron-session": "^8.0.4",
    "lodash": "^4.17.21"
  },
  "devDependencies": {
    "@commitlint/cli": "^19.8.1",
    "@commitlint/config-conventional": "^19.8.1",
    "@faker-js/faker": "9.9.0",
    "@rollup/plugin-commonjs": "^28.0.6",
    "@rollup/plugin-json": "^6.1.0",
    "@rollup/plugin-node-resolve": "^16.0.1",
    "@rollup/plugin-terser": "^0.4.4",
    "@rollup/plugin-typescript": "^12.1.4",
    "@semantic-release/git": "^10.0.1",
    "@semantic-release/npm": "^12.0.2",
    "@storybook/addon-docs": "^9.1.7",
    "@storybook/nextjs-vite": "^9.1.7",
    "@testing-library/jest-dom": "^6.8.0",
    "@testing-library/react": "^16.3.0",
    "@testing-library/user-event": "^14.6.1",
    "@types/jest": "^30.0.0",
    "@types/lodash": "^4.17.21",
    "eslint": "^9.36.0",
    "eslint-config-prettier": "^10.1.8",
    "eslint-import-resolver-typescript": "^4.4.4",
    "eslint-plugin-import": "^2.29.1",
    "eslint-plugin-mdx": "^3.6.2",
    "eslint-plugin-no-relative-import-paths": "^1.6.1",
    "eslint-plugin-react": "^7.33.2",
    "eslint-plugin-react-hooks": "^5.2.0",
    "eslint-plugin-storybook": "^9.1.7",
    "husky": "^9.1.7",
    "jest": "^30.1.3",
    "jest-environment-jsdom": "^30.1.2",
    "prettier": "^3.1.1",
    "react": "^18.3.1",
    "react-dom": "^18.3.1",
    "rollup": "^4.52.0",
    "rollup-plugin-dts": "^6.2.3",
    "rollup-plugin-peer-deps-external": "^2.2.4",
    "rollup-plugin-typescript-paths": "^1.5.0",
    "storybook": "^9.1.7",
    "ts-jest": "^29.4.4",
    "typescript": "^5.8.3",
    "typescript-eslint": "^8.44.0"
  },
  "release": {
    "branches": [
      "main"
    ],
    "plugins": [
      "@semantic-release/commit-analyzer",
      "@semantic-release/release-notes-generator",
      "@semantic-release/npm",
      [
        "@semantic-release/git",
        {
          "assets": [
            "package.json",
            "package-lock.json"
          ],
          "message": "build(release): ${nextRelease.version} [skip ci]"
        }
      ]
    ]
  }
}
