* feat(core, event-bus): Compensate emit event step utility * tests * Update changeset to remove integration-tests-modules Removed integration-tests-modules from changeset. * revert test script
46 lines
1.1 KiB
JSON
46 lines
1.1 KiB
JSON
{
|
|
"name": "@medusajs/event-bus-local",
|
|
"version": "2.9.0",
|
|
"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.9.0",
|
|
"@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 --maxWorkers=50% --bail --detectOpenHandles --forceExit --logHeapUsage -- integration-tests/__tests__/**/*.spec.ts"
|
|
},
|
|
"dependencies": {
|
|
"ulid": "^2.3.0"
|
|
},
|
|
"peerDependencies": {
|
|
"@medusajs/framework": "2.9.0"
|
|
}
|
|
}
|