{
  "name": "@engyalo/workflow-types",
  "version": "1.14.0-main-d9b30fe",
  "description": "",
  "main": "./lib/index.js",
  "types": "./lib/index.d.ts",
  "scripts": {
    "lint": "eslint . --ext ts --fix",
    "tsc": "tsc --build",
    "clearjs": "npx rimraf ./lib",
    "pretest": "typescript-json-schema src/models/workflows.ts \"*\" --strictNullChecks --noExtraProps --required --id workflowsSchema  -o tests/schemas/workflows.schema.json",
    "test": "jest",
    "prebuild": "npm run clearjs",
    "build": "npm run tsc"
  },
  "repository": {
    "type": "git",
    "url": "git@github.com:yalochat/worfklows-types.git"
  },
  "directories": {
    "lib": "lib"
  },
  "files": [
    "lib"
  ],
  "keywords": [
    "workflow",
    "types"
  ],
  "author": "Engineering @ Yalo",
  "license": "MIT",
  "eslintConfig": {
    "extends": [
      "plugin:@typescript-eslint/recommended",
      "plugin:prettier/recommended"
    ],
    "parser": "@typescript-eslint/parser",
    "rules": {
      "quotes": [
        2,
        "single",
        "avoid-escape"
      ],
      "no-debugger": "error",
      "no-process-env": "off",
      "import/prefer-default-export": "off",
      "@typescript-eslint/explicit-function-return-type": "off",
      "@typescript-eslint/no-unused-vars": [
        "error",
        {
          "vars": "all",
          "args": "after-used",
          "ignoreRestSiblings": true
        }
      ],
      "new-cap": [
        "error",
        {
          "capIsNewExceptions": [
            "Injectable",
            "Inject"
          ]
        }
      ],
      "prefer-destructuring": [
        "error",
        {
          "VariableDeclarator": {
            "array": false,
            "object": true
          },
          "AssignmentExpression": {
            "array": true,
            "object": false
          }
        },
        {
          "enforceForRenamedProperties": false
        }
      ]
    }
  },
  "devDependencies": {
    "@types/jest": "29.5.14",
    "@types/jest-json-schema": "6.1.5",
    "@types/node": "16.18.126",
    "@typescript-eslint/eslint-plugin": "6.10.0",
    "@typescript-eslint/parser": "6.10.0",
    "eslint": "8.57.1",
    "eslint-config-prettier": "10.1.8",
    "eslint-plugin-import": "2.32.0",
    "eslint-plugin-prettier": "5.5.5",
    "jest": "29.7.0",
    "jest-json-schema": "6.1.0",
    "prettier": "3.8.3",
    "ts-jest": "29.4.11",
    "typescript": "5.2.2",
    "typescript-json-schema": "0.62.0"
  },
  "dependencies": {
    "zod": "3.22.4"
  },
  "overrides": {
    "cross-spawn": "7.0.6"
  }
}