{"library":"serverless-step-functions","install":[{"cmd":"npm install serverless-step-functions","imports":["plugins:\n  - serverless-step-functions","stepFunctions:\n  stateMachines:\n    myStateMachine:\n      definition:\n        Comment: \"A simple state machine\"\n        StartAt: \"Hello\"\n        States:\n          Hello:\n            Type: Pass\n            End: true","stepFunctions:\n  stateMachines:\n    myApiStateMachine:\n      definition:\n        Comment: \"A state machine triggered by API Gateway\"\n        StartAt: \"Hello\"\n        States:\n          Hello:\n            Type: Pass\n            End: true\n      events:\n        - httpApi:\n            path: /my-workflow\n            method: post\n            async: true\n            response:\n              headers:\n                Content-Type: \"'application/json'\"\n              template: \"$input.json('$')\""]},{"cmd":"yarn add serverless-step-functions","imports":[]},{"cmd":"pnpm add serverless-step-functions","imports":[]}]}