{ "name": "@medusajs/rbac", "version": "2.12.5", "description": "Medusa RBAC module", "main": "dist/index.js", "types": "dist/index.d.ts", "files": [ "dist", "!dist/**/__tests__", "!dist/**/__mocks__", "!dist/**/__fixtures__" ], "engines": { "node": ">=20" }, "repository": { "type": "git", "url": "https://github.com/medusajs/medusa", "directory": "packages/modules/rbac" }, "publishConfig": { "access": "public" }, "author": "Medusa", "license": "MIT", "scripts": { "watch": "yarn run -T tsc --build --watch", "watch:test": "yarn run -T tsc --build tsconfig.spec.json --watch", "resolve:aliases": "yarn run -T tsc --showConfig -p tsconfig.json > tsconfig.resolved.json && yarn run -T tsc-alias -p tsconfig.resolved.json && yarn run -T rimraf tsconfig.resolved.json", "build": "yarn run -T rimraf dist && yarn run -T tsc --build && npm run resolve:aliases", "test": "../../../node_modules/.bin/jest --passWithNoTests --bail --forceExit --testPathPattern=src", "test:integration": "../../../node_modules/.bin/jest --passWithNoTests --forceExit --testPathPattern=\"integration-tests/__tests__/.*\\.ts\"", "migration:initial": "MIKRO_ORM_CLI_CONFIG=./mikro-orm.config.dev.ts MIKRO_ORM_ALLOW_GLOBAL_CLI=true medusa-mikro-orm migration:create --initial", "migration:create": "MIKRO_ORM_CLI_CONFIG=./mikro-orm.config.dev.ts MIKRO_ORM_ALLOW_GLOBAL_CLI=true medusa-mikro-orm migration:create", "migration:up": "MIKRO_ORM_CLI_CONFIG=./mikro-orm.config.dev.ts MIKRO_ORM_ALLOW_GLOBAL_CLI=true medusa-mikro-orm migration:up", "orm:cache:clear": "MIKRO_ORM_CLI_CONFIG=./mikro-orm.config.dev.ts MIKRO_ORM_ALLOW_GLOBAL_CLI=true medusa-mikro-orm cache:clear" }, "devDependencies": { "@medusajs/framework": "2.12.5", "@medusajs/test-utils": "2.12.5" }, "peerDependencies": { "@medusajs/framework": "2.12.5" } }