@konkon5991/pipeline-ts
Version:
A lightweight TypeScript library for Railway Oriented Programming (ROP) with comprehensive functional programming utilities.
66 lines • 1.66 kB
JSON
{
"name": "@konkon5991/pipeline-ts",
"version": "0.2.5",
"description": "A lightweight TypeScript library for Railway Oriented Programming (ROP) with comprehensive functional programming utilities.",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"type": "module",
"files": [
"dist",
"README.md",
"LICENSE"
],
"author": {
"name": "konkon",
"email": "your.email@example.com",
"url": "https://github.com/Takayuki-Y5991"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/Takayuki-Y5991/pipeline-ts.git"
},
"keywords": [
"typescript",
"railway-oriented-programming",
"rop",
"functional-programming",
"pipeline",
"result",
"either",
"monad",
"error-handling",
"validation",
"async",
"chain",
"compose",
"fp",
"zero-dependencies"
],
"bugs": {
"url": "https://github.com/Takayuki-Y5991/pipeline-ts/issues"
},
"homepage": "https://github.com/Takayuki-Y5991/pipeline-ts#readme",
"engines": {
"node": ">=16.0.0"
},
"sideEffects": false,
"devDependencies": {
"@types/node": "^20.14.11",
"@vitest/coverage-v8": "^2.1.9",
"ts-node": "^10.9.2",
"typescript": "^5.5.3",
"vitest": "^2.1.9"
},
"scripts": {
"build": "tsc",
"test": "vitest run --coverage",
"test:watch": "vitest",
"typecheck": "tsc --noEmit",
"lint": "echo 'No linting configured'",
"clean": "rm -rf dist",
"version:up": "pnpm version patch",
"push:package": "pnpm publish --access public",
"deploy": "pnpm run version:up && pnpm run build && pnpm run push:package"
}
}