Files
medusa-store/packages/core/workflows-sdk/package.json
Adrien de Peretti d51ae2768b chore(workflow-engine-*): cleanup and improvements (#13789)
**What**
Cleanup recent work on workflows
2025-10-23 10:50:24 +00:00

56 lines
1.3 KiB
JSON

{
"name": "@medusajs/workflows-sdk",
"version": "2.11.0",
"description": "Set of workflows tooling for Medusa",
"main": "dist/index.js",
"exports": {
".": "./dist/index.js",
"./composer": "./dist/utils/composer/index.js"
},
"repository": {
"type": "git",
"url": "https://github.com/medusajs/medusa",
"directory": "packages/core/workflows-sdk"
},
"engines": {
"node": ">=20.0.0"
},
"publishConfig": {
"access": "public"
},
"files": [
"dist",
"!dist/**/__tests__",
"!dist/**/__mocks__",
"!dist/**/__fixtures__"
],
"author": "Medusa",
"license": "MIT",
"devDependencies": {
"@medusajs/types": "2.11.0",
"@swc/core": "^1.7.28",
"@swc/jest": "^0.2.36",
"expect-type": "^0.20.0",
"jest": "^29.7.0",
"rimraf": "^5.0.1",
"typescript": "^5.6.2",
"zod": "3.25.76"
},
"dependencies": {
"@medusajs/deps": "2.11.0",
"@medusajs/modules-sdk": "2.11.0",
"@medusajs/orchestration": "2.11.0",
"@medusajs/utils": "2.11.0",
"ulid": "^2.3.0"
},
"peerDependencies": {
"express": "^4.21.0"
},
"scripts": {
"build": "rimraf dist && tsc --build",
"watch": "tsc --build --watch",
"test": "jest --bail --forceExit -- src/**/__tests__/**/*.spec.ts",
"test:run": "node ./dist/utils/_playground.js"
}
}