Files
medusa-store/packages/core/workflows-sdk/package.json
github-actions[bot] 645266c200 chore: Version Packages (#13923)
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
2025-11-05 12:52:44 +01:00

46 lines
1.1 KiB
JSON

{
"name": "@medusajs/workflows-sdk",
"version": "2.11.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.11.3"
},
"dependencies": {
"@medusajs/deps": "2.11.3",
"@medusajs/modules-sdk": "2.11.3",
"@medusajs/orchestration": "2.11.3",
"@medusajs/utils": "2.11.3",
"ulid": "^2.3.0"
},
"scripts": {
"build": "yarn run -T rimraf dist && yarn run -T tsc --build",
"watch": "yarn run -T tsc --build --watch",
"test": "../../../node_modules/.bin/jest --bail --forceExit --testPathPattern=src",
"test:run": "node ./dist/utils/_playground.js"
}
}