Files
medusa-store/packages/modules/event-bus-local/package.json
github-actions[bot] 174b5b1cb7 chore: Version Packages (#13494)
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
2025-09-18 18:38:07 +02:00

46 lines
1.1 KiB
JSON

{
"name": "@medusajs/event-bus-local",
"version": "2.10.3",
"description": "Local Event Bus Module for Medusa",
"main": "dist/index.js",
"files": [
"dist",
"!dist/**/__tests__",
"!dist/**/__mocks__",
"!dist/**/__fixtures__"
],
"repository": {
"type": "git",
"url": "https://github.com/medusajs/medusa",
"directory": "packages/modules/event-bus-local"
},
"publishConfig": {
"access": "public"
},
"engines": {
"node": ">=20"
},
"author": "Medusa",
"license": "MIT",
"devDependencies": {
"@medusajs/framework": "2.10.3",
"@swc/core": "^1.7.28",
"@swc/jest": "^0.2.36",
"jest": "^29.7.0",
"rimraf": "^5.0.1",
"typescript": "^5.6.2"
},
"scripts": {
"watch": "tsc --build --watch",
"build": "rimraf dist && tsc --build",
"test": "jest --passWithNoTests",
"test:integration": "jest --no-cache --bail --detectOpenHandles --forceExit --logHeapUsage -- integration-tests/__tests__/**/*.spec.ts"
},
"dependencies": {
"ulid": "^2.3.0"
},
"peerDependencies": {
"@medusajs/framework": "2.10.3"
}
}