Files
medusa-store/packages/core/workflows-sdk/package.json
github-actions[bot] 6dca59d0a5 chore: Version Packages (#13338)
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
2025-08-28 22:58:13 +02:00

67 lines
1.6 KiB
JSON

{
"name": "@medusajs/workflows-sdk",
"version": "2.10.1",
"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": {
"@mikro-orm/core": "6.4.3",
"@mikro-orm/knex": "6.4.3",
"@mikro-orm/migrations": "6.4.3",
"@mikro-orm/postgresql": "6.4.3",
"@swc/core": "^1.7.28",
"@swc/jest": "^0.2.36",
"awilix": "^8.0.1",
"expect-type": "^0.20.0",
"jest": "^29.7.0",
"pg": "^8.13.0",
"rimraf": "^5.0.1",
"typescript": "^5.6.2",
"zod": "3.25.76"
},
"dependencies": {
"@medusajs/modules-sdk": "2.10.1",
"@medusajs/orchestration": "2.10.1",
"@medusajs/types": "2.10.1",
"@medusajs/utils": "2.10.1",
"ulid": "^2.3.0"
},
"peerDependencies": {
"@mikro-orm/core": "6.4.3",
"@mikro-orm/knex": "6.4.3",
"@mikro-orm/migrations": "6.4.3",
"@mikro-orm/postgresql": "6.4.3",
"awilix": "^8.0.1",
"express": "^4.21.0",
"pg": "^8.13.0"
},
"scripts": {
"build": "rimraf dist && tsc --build",
"watch": "tsc --build --watch",
"test": "jest --runInBand --bail --forceExit",
"test:run": "node ./dist/utils/_playground.js"
}
}