auto-form-sync
Version:
Auto-save and restore form data using Local/Session/Custom Storage.
57 lines (56 loc) • 1.3 kB
JSON
{
"name": "auto-form-sync",
"version": "1.1.2",
"description": "Auto-save and restore form data using Local/Session/Custom Storage.",
"type": "module",
"main": "dist/index.js",
"module": "dist/index.esm.js",
"types": "dist/index.d.ts",
"exports": {
".": {
"import": "./dist/index.esm.js",
"require": "./dist/index.js",
"types": "./dist/index.d.ts"
}
},
"files": [
"dist"
],
"scripts": {
"build": "rollup -c",
"prepare": "npm run build"
},
"keywords": [
"form",
"autosave",
"localstorage",
"sessionstorage",
"typescript",
"browser",
"draft",
"form-data",
"react"
],
"author": "Sandeep K.",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/thesandeepcodes/auto-form-sync.git"
},
"bugs": {
"url": "https://github.com/thesandeepcodes/auto-form-sync/issues"
},
"homepage": "https://github.com/thesandeepcodes/auto-form-sync#readme",
"devDependencies": {
"@rollup/plugin-terser": "^0.4.4",
"@types/react": "^19.1.8",
"@types/react-dom": "^19.1.6",
"rollup": "^4.45.0",
"rollup-plugin-typescript2": "^0.36.0",
"typescript": "^5.8.3"
},
"peerDependencies": {
"react": ">=17.0.0",
"react-dom": ">=17.0.0"
}
}