Files
medusa-store/packages/core/workflows-sdk/package.json
Adrien de Peretti 12a96a7c70 chore(): Move peer deps into a single package and re export from framework (#13439)
* chore(): Move peer deps into a single package and re export from framework

* WIP

* update core packages

* update cli and deps

* update medusa

* update exports path

* remove analyze

* update modules deps

* finalise changes

* fix yarn

* fix import

* Refactor peer dependencies into a single package

Consolidate peer dependencies into one package and re-export from the framework.

* update changeset

* Update .changeset/brown-cows-sleep.md

Co-authored-by: Oli Juhl <59018053+olivermrbl@users.noreply.github.com>

* rm deps

* fix deps

* increase timeout

* upgrade version

* update versions

* update versions

* fixes

* update lock

* fix missing import

* fix missing import

---------

Co-authored-by: Oli Juhl <59018053+olivermrbl@users.noreply.github.com>
2025-09-22 18:36:22 +02:00

56 lines
1.3 KiB
JSON

{
"name": "@medusajs/workflows-sdk",
"version": "2.10.3",
"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.10.3",
"@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.10.3",
"@medusajs/modules-sdk": "2.10.3",
"@medusajs/orchestration": "2.10.3",
"@medusajs/utils": "2.10.3",
"ulid": "^2.3.0"
},
"peerDependencies": {
"express": "^4.21.0"
},
"scripts": {
"build": "rimraf dist && tsc --build",
"watch": "tsc --build --watch",
"test": "jest --bail --forceExit",
"test:run": "node ./dist/utils/_playground.js"
}
}