docs-util: created docblock-generator tool (#6096)

This commit is contained in:
Shahed Nasser
2024-01-24 11:13:40 +01:00
committed by GitHub
parent d68089b2aa
commit f29948a6a8
37 changed files with 2684 additions and 115 deletions
@@ -0,0 +1,31 @@
{
"name": "docblock-generator",
"license": "MIT",
"scripts": {
"start": "ts-node src/index.ts",
"build": "tsc",
"watch": "tsc --watch",
"prepublishOnly": "cross-env NODE_ENV=production tsc --build"
},
"publishConfig": {
"access": "public"
},
"version": "0.0.0",
"type": "module",
"exports": "./dist/index.js",
"bin": {
"workflow-diagrams-generator": "dist/index.js"
},
"dependencies": {
"@octokit/core": "^5.0.2",
"commander": "^11.1.0",
"dotenv": "^16.3.1",
"eslint": "^8.56.0",
"minimatch": "^9.0.3",
"ts-node": "^10.9.1",
"typescript": "5.2"
},
"devDependencies": {
"@types/node": "^20.9.4"
}
}