{
  "name": "cloudflared-tunnel",
  "version": "1.0.3",
  "description": "A simple tool automates running a Cloudflare-Tunnel for exposing your local host to the world! it could be used as a standalone CLI or imported into other libraries CLI's",
  "author": "Ahmed Rowaihi @ahmedrowaihi",
  "bin": {
    "cf-tunnel": "./bin/run"
  },
  "publishConfig": {
    "access": "public",
    "registry": "https://registry.npmjs.org/"
  },
  "homepage": "https://github.com/ahmedrowaihi/cloudflared-tunnel",
  "license": "MIT",
  "main": "dist/index.js",
  "repository": "https://github.com/ahmedrowaihi/cloudflared-tunnel",
  "files": [
    "/bin",
    "/dist",
    "/npm-shrinkwrap.json",
    "/oclif.manifest.json"
  ],
  "dependencies": {
    "@oclif/core": "^2",
    "@oclif/plugin-help": "^5",
    "@oclif/plugin-plugins": "^3.9.4",
    "cloudflared": "^0.5.0",
    "readline-sync": "^1.4.10"
  },
  "devDependencies": {
    "@oclif/test": "^2.5.6",
    "@types/chai": "^4",
    "@types/mocha": "^9.0.0",
    "@types/node": "^20.9.0",
    "@types/readline-sync": "^1.4.7",
    "chai": "^4",
    "eslint": "^7.32.0",
    "eslint-config-oclif": "^4",
    "eslint-config-oclif-typescript": "^1.0.3",
    "mocha": "^9",
    "oclif": "^3.17.2",
    "prettier": "^3.0.3",
    "shx": "^0.3.4",
    "ts-node": "^10.9.1",
    "tslib": "^2.6.2",
    "typescript": "^4.9.5"
  },
  "oclif": {
    "bin": "cf-tunnel",
    "dirname": "cf-tunnel",
    "commands": "./dist/commands",
    "default": "cf-tunnel",
    "plugins": [
      "@oclif/plugin-help",
      "@oclif/plugin-plugins"
    ]
  },
  "release-it": {
    "git": {
      "tagName": "v${version}"
    },
    "github": {
      "release": true
    },
    "npm": {
      "publish": true
    }
  },
  "scripts": {
    "build": "shx rm -rf dist && npx patch-package && tsc -b",
    "lint": "prettier . -w && eslint . --ext .ts --config .eslintrc --fix",
    "postpack": "shx rm -f oclif.manifest.json",
    "posttest": "yarn lint",
    "prepack": "yarn build && oclif manifest && oclif readme",
    "test": "mocha --forbid-only \"test/**/*.test.ts\"",
    "release": "yarn pack && release-it",
    "pack": "yarn lint && yarn build",
    "version": "oclif readme && git add README.md"
  },
  "engines": {
    "node": ">=12.0.0"
  },
  "bugs": "https://github.com/ahmedrowaihi/cloudflared-tunnel/issues",
  "keywords": [
    "oclif"
  ],
  "types": "dist/index.d.ts",
  "private": false
}
