@ehfuse/forma
Version:
Advanced React state management library with individual field subscriptions - supports both forms and general state management with useFormaState
80 lines (79 loc) • 2.5 kB
JSON
{
"name": "@ehfuse/forma",
"version": "2.3.2",
"description": "Advanced React state management library with individual field subscriptions - supports both forms and general state management with useFormaState",
"main": "dist/index.js",
"module": "dist/esm/index.js",
"types": "dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/esm/index.js",
"require": "./dist/index.js"
}
},
"files": [
"dist",
"README.md",
"LICENSE"
],
"scripts": {
"build": "npm run clean && npm run build:cjs && npm run build:esm && npm run build:types",
"build:cjs": "tsc -p tsconfig.build.json && esbuild dist/index.js --minify --outfile=dist/index.js --allow-overwrite",
"build:esm": "tsc -p tsconfig.build.json --module esnext --outDir dist/esm && esbuild dist/esm/index.js --minify --outfile=dist/esm/index.js --allow-overwrite",
"build:types": "tsc -p tsconfig.build.json --declaration --emitDeclarationOnly --outDir dist",
"clean": "rm -rf dist",
"prepublishOnly": "npm run build",
"test": "echo \"Tests will be added\" && exit 0",
"lint": "eslint . --ext .ts,.tsx",
"format": "prettier --write \"**/*.{ts,tsx,js,jsx,json,md}\"",
"dev": "cd example && npm run dev",
"dev:install": "cd example && npm install"
},
"keywords": [
"react",
"form",
"forms",
"form-state",
"form-management",
"state-management",
"typescript",
"react-hooks",
"performance",
"mui",
"material-ui",
"dot-notation",
"nested-objects",
"global-state",
"multi-step",
"form-validation",
"react-form",
"subscription",
"react19"
],
"author": {
"name": "KIM YOUNG JIN",
"email": "ehfuse@gmail.com"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/ehfuse/forma.git"
},
"bugs": {
"url": "https://github.com/ehfuse/forma/issues"
},
"homepage": "https://github.com/ehfuse/forma#readme",
"engines": {
"node": ">=16.0.0",
"npm": ">=7.0.0"
},
"publishConfig": {
"access": "public"
},
"devDependencies": {
"@types/react": "^19.1.12",
"esbuild": "^0.23.0",
"typescript": "^5.9.2"
}
}