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