{
  "name": "storyblok-js-client",
  "type": "module",
  "version": "7.7.1",
  "description": "Universal JavaScript SDK for Storyblok's API",
  "author": "Alexander Feiglstorfer <delooks@gmail.com>",
  "license": "MIT",
  "homepage": "https://github.com/storyblok/monoblok/tree/main/packages/js-client#readme",
  "repository": {
    "type": "git",
    "url": "https://github.com/storyblok/monoblok.git",
    "directory": "packages/js-client"
  },
  "bugs": {
    "url": "https://github.com/storyblok/monoblok/issues"
  },
  "keywords": [
    "storyblok",
    "javascript",
    "api"
  ],
  "sideEffects": false,
  "exports": {
    ".": {
      "import": "./dist/index.mjs",
      "require": "./dist/index.cjs"
    },
    "./package.json": "./package.json"
  },
  "main": "./dist/index.cjs",
  "module": "./dist/index.mjs",
  "unpkg": "./dist/index.umd.js",
  "jsdelivr": "./dist/index.umd.js",
  "types": "./dist/index.d.cts",
  "source": "src/index.ts",
  "files": [
    "dist",
    "src"
  ],
  "devDependencies": {
    "@arethetypeswrong/core": "^0.18.2",
    "@tsconfig/recommended": "^1.0.8",
    "@vitest/coverage-v8": "^3.1.3",
    "@vitest/ui": "^3.1.3",
    "eslint": "^9.26.0",
    "msw": "^2.10.2",
    "tsdown": "^0.20.3",
    "typescript": "5.8.3",
    "vite": "^7.0.6",
    "vitest": "^3.1.3",
    "@storyblok/eslint-config": "0.6.0"
  },
  "release": {
    "branches": [
      "main",
      {
        "name": "next",
        "prerelease": true
      },
      {
        "name": "beta",
        "prerelease": true
      }
    ]
  },
  "publishConfig": {
    "access": "public"
  },
  "nx": {
    "implicitDependencies": [
      "!@storyblok/playground-*"
    ]
  },
  "scripts": {
    "dev": "tsdown --watch",
    "build": "tsdown",
    "test:types": "tsc --noEmit --skipLibCheck",
    "test": "pnpm run test:unit && pnpm run test:e2e",
    "test:unit": "vitest run",
    "test:unit:ui": "vitest --ui",
    "test:e2e": "vitest run -c vitest.config.e2e.ts",
    "lint": "eslint .",
    "lint:fix": "eslint . --fix",
    "playground": "pnpm run --filter ./playground/vanilla dev",
    "playground:next": "pnpm run --filter ./playground/nextjs dev",
    "dev:umd": "npx serve ./",
    "coverage": "vitest run --coverage"
  }
}