{
  "name": "@availity/native-form",
  "version": "7.0.2",
  "description": "Submit JSON data via a native form, not AJAX. Useful when you need to open a new page with a POST action.",
  "keywords": [
    "availity",
    "form",
    "native",
    "submission"
  ],
  "homepage": "https://availity.github.io/sdk-js/resources/native-form",
  "bugs": {
    "url": "https://github.com/availity/sdk-js/issues"
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/availity/sdk-js.git",
    "directory": "packages/native-form"
  },
  "license": "MIT",
  "author": "Evan Sharp <evan.sharp@availity.com>",
  "browser": "./dist/index.js",
  "main": "./dist/index.js",
  "module": "./dist/index.mjs",
  "types": "./dist/index.d.ts",
  "exports": {
    "./package.json": "./package.json",
    ".": {
      "types": "./dist/index.d.ts",
      "import": "./dist/index.mjs",
      "require": "./dist/index.js"
    }
  },
  "engines": {
    "node": "^20.0.0 || ^22.0.0"
  },
  "scripts": {
    "build": "tsup src/index.js --format esm,cjs --dts",
    "dev": "tsup src/index.js --format esm,cjs --watch --dts",
    "lint": "eslint src",
    "lint:fix": "eslint src --fix",
    "clean": "rm -rf node_modules && rm -rf dist",
    "publish": "yarn npm publish --tolerate-republish --access public"
  },
  "dependencies": {
    "@availity/api-axios": "11.1.0"
  },
  "devDependencies": {
    "tsup": "^8.4.0",
    "typescript": "^5.5.4"
  },
  "publishConfig": {
    "access": "public"
  }
}