Files
medusa-store/packages/core/core-flows/package.json
2025-12-11 14:10:54 +01:00

45 lines
1011 B
JSON

{
"name": "@medusajs/core-flows",
"version": "2.12.2",
"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.12.2"
},
"dependencies": {
"csv-parse": "^5.6.0",
"json-2-csv": "^5.5.4",
"zod": "3.25.76"
},
"peerDependencies": {
"@medusajs/framework": "2.12.2"
},
"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 --passWithNoTests"
}
}