{
  "version": "0.1.0",
  "license": "MIT",
  "publishConfig": {
    "access": "public"
  },
  "sideEffects": false,
  "exports": {
    ".": {
      "types": "./dist/index.d.ts",
      "import": "./dist/index.mjs",
      "require": "./dist/index.cjs"
    },
    "./*": {
      "types": "./dist/*.d.ts",
      "import": "./dist/*.mjs",
      "require": "./dist/*.cjs"
    }
  },
  "main": "./dist/index.cjs",
  "module": "./dist/index.mjs",
  "types": "./dist/index.d.ts",
  "files": [
    "dist",
    "bin"
  ],
  "bin": {
    "program": "./bin/program.js"
  },
  "scripts": {
    "build": "unbuild",
    "stub": "unbuild --stub",
    "dev": "esno src/cli.ts",
    "lint": "eslint --ext .ts,.js .",
    "lint:fix": "eslint --ext .ts,.js . --fix",
    "typecheck": "tsc --noEmit",
    "clean": "rimraf dist program",
    "release": "bumpp --commit --push --tag && pnpm publish",
    "prepublishOnly": "pnpm build",
    "prepare": "husky install",
    "commit": "cz"
  },
  "dependencies": {
    "consola": "2.15.3",
    "dotenv": "16.0.0",
    "fs-extra": "10.0.1",
    "ohmyfetch": "0.4.15",
    "picocolors": "1.0.0",
    "unconfig": "0.3.1",
    "yargs": "17.3.1"
  },
  "devDependencies": {
    "@types/eslint": "8.4.1",
    "@types/fs-extra": "9.0.13",
    "@types/node": "17.0.21",
    "@types/yargs": "17.0.8",
    "@typescript-eslint/eslint-plugin": "5.13.0",
    "@typescript-eslint/parser": "5.13.0",
    "bumpp": "7.1.1",
    "commitizen": "4.2.4",
    "cz-emoji": "1.3.1",
    "eslint": "8.10.0",
    "eslint-config-prettier": "8.4.0",
    "eslint-plugin-prettier": "4.0.0",
    "esno": "0.14.1",
    "husky": "7.0.4",
    "jiti": "1.13.0",
    "lint-staged": "12.3.4",
    "pinst": "3.0.0",
    "prettier": "2.5.1",
    "pretty-quick": "3.1.3",
    "rimraf": "3.0.2",
    "tsconfig-paths": "3.12.0",
    "tsup": "5.11.13",
    "typescript": "4.6.2",
    "unbuild": "0.6.9"
  },
  "release": {
    "branches": [
      "+([0-9])?(.{+([0-9]),x}).x",
      "main",
      "next",
      "next-major",
      {
        "name": "beta",
        "prerelease": true
      },
      {
        "name": "alpha",
        "prerelease": true
      }
    ]
  },
  "lint-staged": {
    "*.{js,ts}": [
      "pnpm lint --fix"
    ]
  },
  "config": {
    "commitizen": {
      "path": "cz-emoji"
    }
  }
}
