{
  "name": "aws-local-stepfunctions",
  "version": "2.0.1",
  "description": "Execute an AWS Step Function state machine locally",
  "keywords": [
    "aws",
    "local",
    "stepfunctions",
    "asl",
    "amazon states language",
    "state machine"
  ],
  "author": {
    "name": "Luis De Anda",
    "email": "ldeandac16@gmail.com",
    "url": "https://github.com/nibble-4bits"
  },
  "homepage": "https://github.com/nibble-4bits/aws-local-stepfunctions",
  "repository": {
    "type": "git",
    "url": "https://github.com/nibble-4bits/aws-local-stepfunctions.git"
  },
  "license": "MIT",
  "files": [
    "build",
    "bin"
  ],
  "type": "module",
  "types": "build/main.d.ts",
  "main": "build/main.node.cjs",
  "module": "build/main.node.esm.js",
  "browser": "build/main.browser.esm.js",
  "exports": {
    "types": "./build/main.d.ts",
    "import": "./build/main.node.esm.js",
    "require": "./build/main.node.cjs",
    "browser": "./build/main.browser.esm.js",
    "default": "./build/main.browser.esm.js"
  },
  "engines": {
    "node": ">=18.0.0"
  },
  "bin": {
    "local-sfn": "./bin/CLI.cjs"
  },
  "scripts": {
    "test": "jest",
    "build": "tsup && rm build/main.d.cts",
    "build:watch": "tsup --watch",
    "prettier": "prettier --check \"src/**/*.ts\"",
    "prettier:fix": "prettier --write \"src/**/*.ts\"",
    "lint": "eslint \"src/**/*.ts\"",
    "lint:fix": "eslint --fix \"src/**/*.ts\""
  },
  "devDependencies": {
    "@types/jest": "^29.5.14",
    "@types/lodash": "^4.17.13",
    "@types/node": "^18.19.64",
    "@typescript-eslint/eslint-plugin": "^6.21.0",
    "@typescript-eslint/parser": "^6.21.0",
    "eslint": "^8.57.1",
    "eslint-config-prettier": "^9.1.0",
    "eslint-plugin-prettier": "^5.2.1",
    "prettier": "^3.3.3",
    "ts-jest": "^29.2.5",
    "tsup": "^8.3.5",
    "typescript": "^5.6.3"
  },
  "dependencies": {
    "@aws-sdk/client-lambda": "^3.693.0",
    "@aws-sdk/credential-providers": "^3.693.0",
    "asl-validator": "^3.9.0",
    "commander": "^11.1.0",
    "jsonpath-plus": "^10.2.0",
    "lodash": "^4.17.21",
    "p-limit": "^3.1.0",
    "wildcard-match": "^5.1.3"
  }
}
