Files
medusa-store/www/utils/packages/workflows-diagrams-generator/package.json
Shahed Nasser 4ffcc41fe7 chore(utils): update auth provider TSDocs + fix errors stopping references build (#9023)
- Updated the TSDocs of the auth provider
- Update the Node version in the docs-util as the outdated version was causing TypeScript error
- Add `@ts-ignore` for a line that was causing a typescript error. If there's a better fix here let me know
2024-09-09 13:53:33 +00:00

30 lines
670 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.12.10"
}
}