Skip to content

Commit

Permalink
first commit
Browse files Browse the repository at this point in the history
  • Loading branch information
konkon committed Jul 17, 2024
0 parents commit 6761309
Show file tree
Hide file tree
Showing 11 changed files with 1,304 additions and 0 deletions.
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@

node_modules/
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
# pipeline-ts
25 changes: 25 additions & 0 deletions package.json
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"
}
}
Loading

0 comments on commit 6761309

Please sign in to comment.