{
  "name": "@noshiro/syncflow-react-hooks",
  "version": "1.0.3",
  "license": "MIT",
  "author": "noshiro",
  "sideEffects": false,
  "main": "esm/index.js",
  "module": "esm/index.js",
  "types": "esm/index.d.ts",
  "scripts": {
    "build": "run-p build:**",
    "build:esm": "wireit",
    "clean": "rimraf esm",
    "fmt": "prettier --ignore-path ../../../.prettierignore  --write .",
    "lint": "wireit",
    "lint:deps": "wireit",
    "lint:fix": "yarn lint --fix",
    "pub": "yarn publish --no-git-tag-version --access=public",
    "setup": "yarn build",
    "test": "wireit",
    "tscw": "tsc --noEmit --watch",
    "type-check": "wireit"
  },
  "dependencies": {
    "@noshiro/react-utils": "*",
    "@noshiro/syncflow": "*",
    "@noshiro/ts-utils": "*",
    "react": "^17.0.2"
  },
  "devDependencies": {
    "@noshiro/ts-type-utils": "*"
  },
  "wireit": {
    "type-check": {
      "command": "tsc --noEmit",
      "files": [
        "src/**/*.ts",
        "tsconfig.json",
        "../../../config/tsconfig/tsconfig.react.nolib.json",
        "../ts-type-utils/ts-type-utils.d.ts"
      ],
      "output": [],
      "packageLocks": [
        "yarn.lock"
      ]
    },
    "build:esm": {
      "command": "tsc --incremental --pretty --project config/tsconfig.esm.json",
      "clean": "if-file-deleted",
      "files": [
        "src/**/*.ts",
        "tsconfig.json",
        "../../../config/tsconfig/tsconfig.react.nolib.json",
        "../ts-type-utils/ts-type-utils.d.ts"
      ],
      "output": [
        "esm/**",
        ".tsbuildinfo"
      ],
      "packageLocks": [
        "yarn.lock"
      ]
    },
    "lint": {
      "command": "eslint src/ --ext .ts --color --cache --cache-location .eslintcache ",
      "dependencies": [
        "fmt",
        "type-check"
      ],
      "files": [
        "src/**/*.ts",
        ".eslintignore",
        ".eslintrc.cjs",
        "tsconfig.json",
        "../../../config/tsconfig/tsconfig.react.nolib.json",
        "../../../config/eslintrc/**",
        "../ts-type-utils/ts-type-utils.d.ts"
      ],
      "output": [],
      "packageLocks": [
        "yarn.lock"
      ]
    },
    "lint:deps": {
      "command": "eslint src/ --ext .ts --color --cache --cache-location .eslintcache-deps --no-eslintrc --config ../../../config/eslintrc/.eslintrc-no-extraneous-dependency.js",
      "dependencies": [
        "fmt"
      ],
      "files": [
        "src/**/*.ts",
        ".eslintignore",
        ".eslintrc.cjs",
        "../../../package.json",
        "package.json",
        "tsconfig.json",
        "../../../config/tsconfig/tsconfig.react.nolib.json",
        "../../../config/eslintrc/**",
        "../ts-type-utils/ts-type-utils.d.ts"
      ],
      "output": [],
      "packageLocks": [
        "yarn.lock"
      ]
    },
    "test": {
      "command": "jest --config config/jest.config.json --passWithNoTests",
      "dependencies": [
        "type-check"
      ],
      "files": [
        "config/jest.config.json",
        "src/**"
      ],
      "packageLocks": [
        "yarn.lock"
      ]
    }
  }
}
