feat: implement line counter as node console app in typescript
This commit is contained in:
@@ -0,0 +1,34 @@
|
||||
{
|
||||
"name": "@stevanfreeborn/line-counter",
|
||||
"version": "0.0.1",
|
||||
"description": "A simple line counter for reporting the number of lines changed in committed and uncommitted files.",
|
||||
"main": "dist/index.js",
|
||||
"bin": {
|
||||
"line-counter": "dist/index.js"
|
||||
},
|
||||
"scripts": {
|
||||
"build": "tsc",
|
||||
"dev": "tsc --watch",
|
||||
"start": "node dist/index.js",
|
||||
"prepare": "npm run build"
|
||||
},
|
||||
"keywords": [
|
||||
"line",
|
||||
"counter",
|
||||
"git",
|
||||
"commit",
|
||||
"uncommitted"
|
||||
],
|
||||
"author": "Stevan Freeborn",
|
||||
"license": "MIT",
|
||||
"type": "module",
|
||||
"files": [
|
||||
"dist",
|
||||
"README.md",
|
||||
"LICENSE.md"
|
||||
],
|
||||
"devDependencies": {
|
||||
"@types/node": "^22.14.1",
|
||||
"typescript": "^5.8.3"
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user