Files
Shahed Nasser bd4d2fd554 docs-util: fixes following packages reorg (#9326)
- Typescript config aren't picked up properly anymore since they're moved to `_tsconfig.base.json` in the root. So, we now read the config from the config file.
- Update Typescript version in the `utils` monorepo to match that of the root monorepo
2024-09-26 17:22:08 +00:00

30 lines
673 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.6.2"
},
"devDependencies": {
"@types/node": "^20.12.10"
}
}