{
  "name": "@identity-connect/api",
  "version": "0.8.0",
  "private": false,
  "license": "MIT",
  "main": "./dist/index.js",
  "module": "./dist/index.mjs",
  "types": "./dist/index.d.ts",
  "exports": {
    "require": "./dist/index.js",
    "import": "./dist/index.mjs",
    "types": "./dist/index.d.ts"
  },
  "devDependencies": {
    "axios-mock-adapter": "1.21.4",
    "ts-node": "10.9.1",
    "tsup": "^7.1.0",
    "@petra/tsconfig": "0.0.0"
  },
  "files": [
    "dist",
    "src",
    "!src/**.test.ts",
    "!src/**/__tests__"
  ],
  "scripts": {
    "build:bundle": "tsup src/index.ts --tsconfig tsconfig.build.json --format cjs,esm --sourcemap",
    "build:declarations": "tsgo --project tsconfig.build.json --emitDeclarationOnly --declaration --declarationMap",
    "build": "pnpm build:bundle && pnpm build:declarations",
    "lint": "biome check",
    "lint:fix": "biome check --write --unsafe",
    "lint:tsc": "tsgo --noEmit -p ./tsconfig.json"
  }
}