-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
konkon
committed
Jul 17, 2024
0 parents
commit 6761309
Showing
11 changed files
with
1,304 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
|
||
node_modules/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
# pipeline-ts |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
{ | ||
"name": "ts-pipeline", | ||
"version": "1.0.0", | ||
"description": "A minimal library that provides a functional pipeline mechanism in typescript", | ||
"main": "./dist/index.js", | ||
"types": "./dist/index.d.ts", | ||
"type": "module", | ||
"files": [ | ||
"dist" | ||
], | ||
"scripts": { | ||
"build": "tsc", | ||
"prepare": "pnpm run build", | ||
"test": "vitest run", | ||
"test:watch": "vitest" | ||
}, | ||
"author": "konkon", | ||
"license": "MIT", | ||
"devDependencies": { | ||
"@types/node": "^20.14.11", | ||
"ts-node": "^10.9.2", | ||
"typescript": "^5.5.3", | ||
"vitest": "^2.0.3" | ||
} | ||
} |
Oops, something went wrong.