{
  "name": "yousign-v3-client",
  "version": "0.2.4",
  "description": "TS Adapter for the YouSign V3 API",
  "keywords": [
    "yousign",
    "digital signature",
    "pdf",
    "signature"
  ],
  "repository": {
    "type": "git",
    "url": "https://github.com/fischi20/yousign-v3-client"
  },
  "main": "./dist/index.cjs",
  "types": "./dist/index.d.ts",
  "module": "./dist/index.mjs",
  "exports": {
    ".": {
      "import": "./dist/index.mjs",
      "require": "./dist/index.cjs",
      "types": "./dist/index.d.ts"
    },
    "./iframe": {
      "import": "./dist/iframe.mjs",
      "require": "./dist/iframe.cjs",
      "types": "./dist/iframe.d.ts"
    }
  },
  "files": [
    "dist"
  ],
  "license": "MIT",
  "dependencies": {
    "hookable": "^5.5.3",
    "ofetch": "^1.3.4"
  },
  "devDependencies": {
    "unbuild": "^2.0.0"
  },
  "engines": {
    "node": ">=20.0.0"
  },
  "unbuild": {
    "rollup": {
      "esbuild": {
        "tsconfigRaw": {
          "compilerOptions": {
            "experimentalDecorators": true
          }
        }
      }
    }
  },
  "scripts": {
    "build": "unbuild",
    "dev": "ts-node ./src/index.ts"
  }
}