{
  "name": "unipile-node-sdk",
  "version": "1.9.3",
  "description": "Unipile node SDK",
  "author": "Unipile",
  "license": "ISC",
  "type": "commonjs",
  "exports": {
    ".": {
      "import": {
        "types": "./dist/esm/index.d.ts",
        "default": "./dist/esm/index.js"
      },
      "require": {
        "types": "./dist/cjs/index.d.ts",
        "default": "./dist/cjs/index.js"
      }
    }
  },
  "main": "./dist/cjs/index.js",
  "module": "./dist/esm/index.js",
  "types": "./dist/types/index.d.ts",
  "files": [
    "dist"
  ],
  "engines": {
    "node": ">=18.*"
  },
  "scripts": {
    "test-e2e-clean": "jest --clearCache && jest --showConfig && jest --verbose --config ./jest.config.js",
    "test-e2e": "jest --verbose --config ./jest.config.js",
    "test-e2e-watch": "jest --verbose --config ./jest.config.js  --watch",
    "test-watch": "jest --verbose --config ./jest.config.js  --watch",
    "clean": "rimraf dist",
    "build:esm": "tsc -p tsconfig.esm.json",
    "build:cjs": "tsc -p tsconfig.cjs.json",
    "build:types": "tsc -p tsconfig.base.json --emitDeclarationOnly --outDir dist/types",
    "build": "npm run clean && npm run build:types && npm run build:esm && npm run build:cjs && cp package.json dist/package.json",
    "prepublishOnly": "npm run build",
    "postversion": "git push origin"
  },
  "devDependencies": {
    "@babel/core": "^7.25.2",
    "@babel/preset-env": "^7.25.3",
    "@babel/preset-typescript": "^7.24.7",
    "@types/jest": "^29.5.12",
    "@typescript-eslint/eslint-plugin": "^6.5.0",
    "@typescript-eslint/parser": "^6.5.0",
    "babel-jest": "^29.7.0",
    "eslint": "^8.48.0",
    "jest": "^29.7.0",
    "jest-fetch-mock": "^3.0.3",
    "prettier": "^3.0.3",
    "rimraf": "^5.0.1",
    "ts-jest": "^29.2.4",
    "typescript": "^5.2.2"
  },
  "dependencies": {
    "@sinclair/typebox": "^0.31.8",
    "@types/qrcode": "^1.5.2",
    "qrcode": "^1.5.3"
  }
}
