Upgrade typedoc to v0.26 + make changes based on the update Note: This update produces an error when generating model references when the models use the `createPsqlIndexStatementHelper` decorator. As this isn't a breaking error, and as we'll move to DML in the future, it's not necessary to spend time on a fix.
30 lines
668 B
JSON
30 lines
668 B
JSON
{
|
|
"name": "workflows-diagram-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": {
|
|
"@medusajs/workflows-sdk": "latest",
|
|
"@mermaid-js/mermaid-cli": "^10.6.1",
|
|
"commander": "^11.1.0",
|
|
"ts-node": "^10.9.1",
|
|
"typescript": "5.5"
|
|
},
|
|
"devDependencies": {
|
|
"@types/node": "^20.9.4"
|
|
}
|
|
}
|