{
  "name": "@h3ravel/console",
  "version": "11.14.17",
  "description": "CLI utilities for scaffolding, running migrations, tasks and for H3ravel.",
  "type": "module",
  "main": "./dist/index.cjs",
  "module": "./dist/index.js",
  "types": "./dist/index.d.ts",
  "exports": {
    ".": {
      "import": "./dist/index.js",
      "require": "./dist/index.cjs"
    },
    "./*": "./*"
  },
  "typesVersions": {
    "*": {
      "*": [
        "dist/index.d.ts"
      ]
    }
  },
  "bin": {
    "musket": "bin/fire.js",
    "prepare": "bin/prepare.js"
  },
  "files": [
    "bin",
    "dist"
  ],
  "publishConfig": {
    "access": "public"
  },
  "homepage": "https://h3ravel.toneflix.net/musket",
  "repository": {
    "type": "git",
    "url": "git+https://github.com/h3ravel/framework.git",
    "directory": "packages/console"
  },
  "keywords": [
    "h3ravel",
    "modern",
    "web",
    "H3",
    "framework",
    "nodejs",
    "typescript",
    "laravel"
  ],
  "peerDependencies": {
    "@h3ravel/core": "~1.21.12",
    "@h3ravel/support": "~0.15.11"
  },
  "devDependencies": {
    "typescript": "^5.9.2"
  },
  "dependencies": {
    "chalk": "^5.6.2",
    "commander": "^14.0.1",
    "dayjs": "^1.11.18",
    "execa": "^9.6.0",
    "preferred-pm": "^4.1.1",
    "radashi": "^12.6.2",
    "resolve-from": "^5.0.0",
    "dotenv": "^17.2.3",
    "@h3ravel/musket": "~0.3.16",
    "tsx": "^4.20.6",
    "@h3ravel/shared": "~0.27.13"
  },
  "scripts": {
    "barrelx": "barrelsby --directory src --delete --singleQuotes",
    "build": "tsdown --config-loader unconfig",
    "dev": "tsx watch src/index.ts",
    "start": "node dist/index.js",
    "lint": "eslint . --ext .ts",
    "test": "jest --passWithNoTests",
    "musket": "cross-env TEST=true APP_DEBUG=false tsx --experimental-specifier-resolution=node src/musket",
    "musket:watch": "cross-env TEST=true APP_DEBUG=false tsx watch --experimental-specifier-resolution=node src/musket",
    "release:patch": "pnpm build && pnpm version patch && git add . && git commit -m \"version: bump console package version\" && pnpm publish --tag latest",
    "version-patch": "pnpm version patch"
  }
}