35 lines
710 B
JSON
35 lines
710 B
JSON
{
|
|
"name": "@stevanfreeborn/line-counter",
|
|
"version": "0.1.0",
|
|
"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"
|
|
}
|
|
}
|