Files
medusa-store/packages/core/core-flows/package.json
github-actions[bot] e47f0d0271 chore: Version Packages (#13545)
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
2025-10-21 09:24:59 +02:00

51 lines
1.1 KiB
JSON

{
"name": "@medusajs/core-flows",
"version": "2.11.0",
"description": "Set of workflow definitions for Medusa",
"main": "dist/index.js",
"exports": {
".": "./dist/index.js"
},
"repository": {
"type": "git",
"url": "https://github.com/medusajs/medusa",
"directory": "packages/core-flows"
},
"publishConfig": {
"access": "public"
},
"engines": {
"node": ">=20"
},
"files": [
"dist",
"!dist/**/__tests__",
"!dist/**/__mocks__",
"!dist/**/__fixtures__"
],
"author": "Medusa",
"license": "MIT",
"devDependencies": {
"@medusajs/framework": "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"
},
"dependencies": {
"csv-parse": "^5.6.0",
"json-2-csv": "^5.5.4",
"zod": "3.25.76"
},
"peerDependencies": {
"@medusajs/framework": "2.11.0"
},
"scripts": {
"build": "rimraf dist && tsc --build",
"watch": "tsc --build --watch",
"test": "jest --bail --forceExit --passWithNoTests"
}
}