{
  "name": "@idswyft/sdk",
  "version": "4.0.0",
  "description": "Official JavaScript/Node.js SDK for the Idswyft identity verification platform",
  "main": "dist/index.cjs",
  "module": "dist/index.esm.js",
  "types": "dist/index.d.ts",
  "browser": "dist/index.esm.js",
  "exports": {
    ".": {
      "import": "./dist/index.esm.js",
      "require": "./dist/index.cjs",
      "types": "./dist/index.d.ts"
    }
  },
  "files": [
    "dist/",
    "README.md",
    "LICENSE"
  ],
  "scripts": {
    "build": "rollup -c",
    "dev": "rollup -c -w",
    "test": "jest",
    "test:unit": "jest test/unit.test.ts",
    "test:integration": "jest test/integration.test.js",
    "test:watch": "jest --watch",
    "lint": "eslint src --ext .ts",
    "lint:fix": "eslint src --ext .ts --fix",
    "type-check": "tsc --noEmit",
    "clean": "rm -rf dist",
    "prepublishOnly": "npm run clean && npm run type-check && npm run build"
  },
  "keywords": [
    "idswyft",
    "identity",
    "verification",
    "kyc",
    "document",
    "authentication",
    "api",
    "sdk"
  ],
  "author": "Idswyft Team",
  "license": "MIT",
  "repository": {
    "type": "git",
    "url": "https://github.com/doobee46/idswyft.git",
    "directory": "sdks/javascript"
  },
  "homepage": "https://idswyft.app",
  "bugs": {
    "url": "https://github.com/doobee46/idswyft/issues"
  },
  "dependencies": {
    "axios": "^1.15.0",
    "form-data": "^4.0.0"
  },
  "devDependencies": {
    "@rollup/plugin-commonjs": "^25.0.0",
    "@rollup/plugin-node-resolve": "^15.0.0",
    "@rollup/plugin-typescript": "^11.0.0",
    "@types/jest": "^29.5.0",
    "@types/node": "^20.0.0",
    "@typescript-eslint/eslint-plugin": "^8.58.0",
    "@typescript-eslint/parser": "^8.58.0",
    "eslint": "^8.0.0",
    "jest": "^29.5.0",
    "jest-environment-jsdom": "^30.3.0",
    "rollup": "^4.0.0",
    "rollup-plugin-dts": "^6.0.0",
    "ts-jest": "^29.1.0",
    "typescript": "^5.0.0"
  },
  "engines": {
    "node": ">=16.0.0"
  }
}
