@efflore/flow-sure
Version:
FlowSure - a Result monad in TypeScript. Data types Ok, Nil, Err with maybe(), result(), asyncResult() and flow() functions.
36 lines • 853 B
JSON
{
"name": "@efflore/flow-sure",
"version": "0.10.0",
"description": "FlowSure - a Result monad in TypeScript. Data types Ok, Nil, Err with maybe(), result(), asyncResult() and flow() functions.",
"main": "index.js",
"types": "index.d.ts",
"scripts": {
"build:dev": "bun build index.ts --outdir ./ && bunx tsc",
"build": "bun build index.ts --outdir ./ --minify && bunx tsc",
"test": "bun test"
},
"module": "index.ts",
"type": "module",
"author": "Esther Brunner",
"license": "MIT",
"keywords": [
"FlowSure",
"Missing Values",
"Optional",
"Maybe",
"Error Handling",
"Result",
"Monad",
"Function Composition",
"Flow"
],
"publishConfig": {
"access": "public"
},
"devDependencies": {
"@types/bun": "latest"
},
"peerDependencies": {
"typescript": "^5.6.3"
}
}