Add TOML config parsing

This commit is contained in:
2025-10-27 16:54:47 +00:00
parent 90ca2c2156
commit 0989f1ca30
9 changed files with 198 additions and 58 deletions

View File

@@ -3,7 +3,6 @@
"description": "Schedule issues in Gitea or GitHub using issue templates",
"version": "0.0.0",
"main": "dist/index.js",
"author": "Luís Figueiredo (TxFig)",
"homepage": "https://gitea.alluna.pt/TxFig/issue-scheduler",
"repository": {
@@ -12,15 +11,18 @@
},
"license": "ISC",
"keywords": [],
"scripts": {
"test": "vitest --run",
"build": "tsc",
"start": "node dist/main.js"
},
"devDependencies": {
"@types/node": "^24.9.1",
"typescript": "^5.9.3",
"vitest": "^3.2.4"
},
"type": "module"
"type": "module",
"dependencies": {
"toml": "^3.0.0"
}
}