{
  "name": "@frostyeti/exec",
  "version": "0.0.0-alpha.0.1.0",
  "type": "module",
  "module": "./esm/mod.js",
  "types": "./types/mod.d.ts",
  "description": "The exec module makes it easy to spawn child_processes across different runtimes and different operating systems.",
  "keywords": [
    "exec",
    "command",
    "shell",
    "process",
    "child-process",
    "spawn",
    "which",
    "split-arguments",
    "splat"
  ],
  "license": "MIT",
  "homepage": "js.frostyeti.com",
  "bugs": {
    "url": "https://github.com/frostyeti/js/discussions/categories/bugs"
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/frostyeti/js.git"
  },
  "scripts": {
    "test": "node --test",
    "test:bun": "bun test",
    "build": "tsc"
  },
  "exports": {
    ".": {
      "import": {
        "default": "./esm/mod.js",
        "types": "./types/mod.d.ts"
      }
    },
    "./command": {
      "import": {
        "default": "./esm/command.js",
        "types": "./types/command.d.ts"
      }
    },
    "./errors": {
      "import": {
        "default": "./esm/errors.js",
        "types": "./types/errors.d.ts"
      }
    },
    "./path-finder": {
      "import": {
        "default": "./esm/path_finder.js",
        "types": "./types/path_finder.d.ts"
      }
    },
    "./set-logger": {
      "import": {
        "default": "./esm/set_logger.js",
        "types": "./types/set_logger.d.ts"
      }
    },
    "./which": {
      "import": {
        "default": "./esm/which.js",
        "types": "./types/which.d.ts"
      }
    }
  },
  "engines": {
    "node": ">=22"
  },
  "dependencies": {
    "@frostyeti/chars": "^0.0.0-alpha.0",
    "@frostyeti/globals": "^0.0.0-alpha.0",
    "@frostyeti/args": "^0.0.0-alpha.0",
    "@frostyeti/path": "^0.0.0-alpha.0",
    "@frostyeti/strings": "^0.0.0-alpha.0",
    "@frostyeti/env": "^0.0.0-alpha.0",
    "@frostyeti/fs": "^0.0.0-alpha.0"
  },
  "devDependencies": {
    "@types/node": "^22.17.0",
    "@frostyeti/assert": "^0.0.0-alpha.0",
    "typescript": "^5.9.3"
  }
}
