fp-ts-std
Version:
The missing pseudo-standard library for fp-ts.
73 lines • 1.94 kB
JSON
{
"name": "fp-ts-std",
"description": "The missing pseudo-standard library for fp-ts.",
"version": "1.0.0",
"license": "MIT",
"author": "Sam A. Horvath-Hunt <hello@samhh.com>",
"repository": {
"type": "git",
"url": "https://github.com/samhh/fp-ts-std"
},
"homepage": "https://github.com/samhh/fp-ts-std",
"bugs": "https://github.com/samhh/fp-ts-std/issues",
"keywords": [
"functional-programming",
"typescript",
"fp-ts"
],
"engines": {
"node": ">=20"
},
"exports": {
"./*": {
"types": "./dist/types/*.d.ts",
"require": "./dist/cjs/*.js",
"import": "./dist/esm/*.js"
}
},
"typesVersions": {
"*": {
"*": [
"./dist/types/*"
]
}
},
"files": [
"dist/"
],
"sideEffects": false,
"devDependencies": {
"@jest/globals": "^30.0.0-alpha.3",
"@swc/core": "^1.3.53",
"@swc/jest": "^0.2.26",
"@types/assert": "^1.5.10",
"@types/jsdom": "^21.1.1",
"@types/node": "^20.12.5",
"assert": "^2.1.0",
"docs-ts": "^0.8.0",
"fast-check": "^3.18.0",
"fp-ts": "^2.16.0",
"fp-ts-laws": "^0.3.0",
"jest": "^30.0.0-alpha.3",
"jsdom": "^22.1.0",
"monocle-ts": "^2.3.0",
"newtype-ts": "^0.3.0",
"ts-node": "^8.10.2",
"typescript": "^5.0.4"
},
"peerDependencies": {
"fp-ts": "^2.16.0",
"monocle-ts": "^2.3.0",
"newtype-ts": "^0.3.0"
},
"scripts": {
"build": "rm -rf ./dist/ && mkdir -p ./dist/esm/ ./dist/cjs/ && tsc -p ./tsconfig.build-esm.json && tsc -p ./tsconfig.build-cjs.json && tsc -p ./tsconfig.build-types.json",
"typecheck": "tsc --noEmit",
"lint": "biome ci --error-on-warnings --formatter-enabled=false --organize-imports-enabled=false .",
"fmt": "biome check --linter-enabled=false .",
"test": "jest",
"docs-ci": "docs-ts",
"docs": "docs-ts && tshm-docs-ts ./docs/modules/*",
"prepublish": "pnpm run build"
}
}