feat: add make-deps script for function dependency graph generation
Some checks failed
build / build (push) Failing after 15s

This commit is contained in:
2026-03-07 10:01:04 +01:00
parent 2a0b49effe
commit d39fdb3e33
3 changed files with 305 additions and 9 deletions

View File

@@ -8,11 +8,10 @@
"LICENSE"
],
"scripts": {
"clean": "rm -rf dist",
"build": "npm run clean && tsc && chmod +x dist/cli.js",
"build:watch": "tsc --watch",
"prepublishOnly": "npm run build",
"create-pca": "node dist/create-pca.js"
"build": "rm -rf dist && tsc && chmod +x dist/cli.js",
"create-pca": "node dist/create-pca.js",
"make-deps": "node scripts/make-mermaid-func-deps.mjs",
"clean": "rm -rf dist"
},
"engines": {
"node": ">=24.0.0"
@@ -29,8 +28,9 @@
"open": "^10.1.0"
},
"devDependencies": {
"@types/node": "^24.0.0",
"typescript": "^5.8.2"
"@types/node": ">=24.0.0",
"ts-morph": ">=27.0.0",
"typescript": ">=5.8.2"
},
"author": {
"name": "Sławomir Koszewski",