@availity/native-form
Version:
Submit JSON data via a native form, not AJAX. Useful when you need to open a new page with a POST action.
55 lines • 1.46 kB
JSON
{
"name": "@availity/native-form",
"version": "8.2.0",
"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>",
"type": "module",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
},
"./package.json": "./package.json"
},
"engines": {
"node": "^22.0.0 || ^24.0.0"
},
"scripts": {
"build": "tsup src/index.js --format esm --clean --dts --target esnext",
"dev": "tsup src/index.js --format esm --watch --dts",
"lint": "eslint src",
"lint:fix": "eslint src --fix",
"clean": "rm -rf dist",
"publish": "yarn npm publish --tolerate-republish --access public",
"test": "vitest run"
},
"dependencies": {
"@availity/api-axios": "13.2.0"
},
"devDependencies": {
"tsup": "^8.5.1",
"typescript": "^5.9.3"
},
"publishConfig": {
"access": "public"
},
"sideEffects": false
}