feat(cli): add arg parsing; chore(config): organize package.json/tsconfig

This commit is contained in:
2025-10-16 16:46:28 +01:00
parent 1151dd4bef
commit c111fd6689
6 changed files with 198 additions and 35 deletions

View File

@@ -1,14 +1,23 @@
{
"name": "issue-scheduler",
"description": "Schedule issues in Gitea or Github from issue templates",
"version": "0.0.0",
"description": "Issue scheduler",
"main": "src/index.ts",
"scripts": {
"test": "test"
"main": "dist/index.js",
"author": "Luís Figueiredo (TxFig)",
"homepage": "https://gitea.alluna.pt/TxFig/issue-scheduler",
"repository": {
"type": "git",
"url": "https://gitea.alluna.pt/TxFig/issue-scheduler.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"keywords": [],
"scripts": {
"test": "vitest --run",
"build": "tsc",
"start": "node dist/main.js"
},
"devDependencies": {
"typescript": "^5.9.3",
"vitest": "^3.2.4"