{
  "name": "@flatfile/util-common",
  "version": "1.8.0",
  "url": "https://github.com/FlatFilers/flatfile-plugins/tree/main/utils/common",
  "description": "A library containing common utilities and helpers for plugins.",
  "keywords": [],
  "author": "Carl Brugger",
  "type": "module",
  "engines": {
    "node": ">= 18"
  },
  "exports": {
    ".": {
      "node": {
        "types": {
          "import": "./dist/index.d.ts",
          "require": "./dist/index.d.cts"
        },
        "import": "./dist/index.js",
        "require": "./dist/index.cjs"
      },
      "browser": {
        "types": {
          "import": "./dist/index.d.ts",
          "require": "./dist/index.d.cts"
        },
        "import": "./dist/index.browser.js",
        "require": "./dist/index.browser.cjs"
      },
      "default": "./dist/index.js"
    },
    "./package.json": "./package.json"
  },
  "main": "./dist/index.cjs",
  "module": "./dist/index.js",
  "umd": "./dist/index.umd.js",
  "source": "./src/index.ts",
  "types": "./dist/index.d.ts",
  "files": [
    "dist/**"
  ],
  "scripts": {
    "build": "tsup && rollup -c",
    "build:watch": "tsup --watch && rollup -c --watch",
    "build:prod": "NODE_ENV=production tsup && rollup -c",
    "checks": "tsc --noEmit && attw --pack . && publint .",
    "lint": "tsc --noEmit",
    "test": "vitest run --mode defaults src/*.spec.ts --passWithNoTests",
    "test:unit": "vitest run --mode defaults src/*.spec.ts --passWithNoTests --exclude src/*.e2e.spec.ts",
    "test:e2e": "vitest run --mode defaults src/*.e2e.spec.ts --passWithNoTests --no-file-parallelism"
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/FlatFilers/flatfile-plugins.git",
    "directory": "utils/common"
  },
  "license": "ISC",
  "dependencies": {
    "@flatfile/cross-env-config": "^0.0.6",
    "cross-fetch": "^4.0.0"
  },
  "peerDependencies": {
    "@flatfile/api": "^1.9.19",
    "@flatfile/listener": "^1.1.0"
  },
  "devDependencies": {
    "@flatfile/bundler-config-tsup": "^0.2.0",
    "@flatfile/config-vitest": "^0.0.0"
  }
}
