{
  "name": "@steamship/cli",
  "description": "Steamship is the fastest way to add language AI to your software.",
  "author": "Steamship",
  "version": "2.2.12",
  "type": "module",
  "main": "dist/index.js",
  "module": "dist/index.js",
  "bin": {
    "ship": "bin/run.js"
  },
  "exports": {
    ".": "./dist/index.js",
    "./package.json": "./package.json",
    "./types": "./dist/index.d.ts",
    "./try.js": "./dist/commands/try.js",
    "./getAuthedClient.js": "./dist/helpers/get-client.js"
  },
  "bugs": "https://github.com/steamship-core/steamship-cli/issues",
  "dependencies": {
    "@babel/runtime": "^7.20.7",
    "@oclif/command": "^1.8.16",
    "@oclif/config": "^1.18.3",
    "@oclif/core": "^1.16.3",
    "@oclif/plugin-help": "^5.1.2",
    "@oclif/plugin-plugins": "^2.1.0",
    "@oclif/plugin-version": "^1.1.2",
    "@steamship/client": "^2.2.36",
    "@types/semver": "^7.3.13",
    "archiver": "^5.3.0",
    "async-retry": "^1.3.3",
    "axios": "^0.24.0",
    "chalk": "^4.1.2",
    "cross-spawn": "^7.0.3",
    "del": "^6.0.0",
    "esm": "^3.2.25",
    "glob": "^7.2.0",
    "got": "^11.8.5",
    "inquirer": "^9.1.1",
    "is-valid-domain": "^0.1.5",
    "minipass": "^3.3.3",
    "rimraf": "^3.0.2",
    "semver": "^7.3.8",
    "table": "^6.8.0",
    "tar": "^6.1.11",
    "tslib": "^2.3.1",
    "validate-npm-package-name": "^3.0.0"
  },
  "devDependencies": {
    "@babel/plugin-transform-runtime": "^7.16.8",
    "@oclif/test": "^2.0.3",
    "@types/archiver": "^5.3.1",
    "@types/async-retry": "^1.4.3",
    "@types/chai": "^4.3.0",
    "@types/chai-as-promised": "^7.1.4",
    "@types/cross-spawn": "^6.0.2",
    "@types/got": "^9.6.12",
    "@types/inquirer": "^9.0.1",
    "@types/minipass": "^3.1.2",
    "@types/mocha": "^9.0.0",
    "@types/node": "^17.0.45",
    "@types/regenerator-runtime": "^0.13.1",
    "@types/rimraf": "^3.0.2",
    "@types/tar": "^6.1.1",
    "@types/validate-npm-package-name": "^3.0.3",
    "@typescript-eslint/eslint-plugin": "^5.29.0",
    "@typescript-eslint/parser": "^5.29.0",
    "chai": "^4",
    "chai-as-promised": "^7.1.1",
    "eslint": "^8.6.0",
    "eslint-config-oclif": "^4.0.0",
    "eslint-config-oclif-typescript": "^1.0.2",
    "eslint-config-prettier": "^8.3.0",
    "eslint-plugin-eslint-comments": "^3.2.0",
    "eslint-plugin-functional": "^4.2.1",
    "eslint-plugin-import": "^2.25.4",
    "mocha": "^9.1.3",
    "nock": "^13.2.2",
    "npm-run-all": "^4.1.5",
    "nyc": "^15.1.0",
    "oclif": "^3",
    "prettier": "^2.7.1",
    "run-s": "^0.0.0",
    "shx": "^0.3.3",
    "sinon": "^12.0.1",
    "ts-node": "^10.9.1",
    "typescript": "^4.9.4",
    "typescript-eslint": "0.0.1-alpha.0"
  },
  "engines": {
    "node": ">=14.8.0"
  },
  "files": [
    "/bin",
    "/dist",
    "/npm-shrinkwrap.json",
    "/oclif.manifest.json"
  ],
  "homepage": "https://github.com/nludb/typescript-client",
  "keywords": [
    "oclif"
  ],
  "license": "MIT",
  "oclif": {
    "commands": "./dist/commands",
    "bin": "ship",
    "dirname": "ship",
    "topics": {
      "package": {
        "description": "Create and deploy Steamship Packages."
      },
      "package:version": {
        "description": "Manage and create versions of your Steamship Packages."
      },
      "package:instance": {
        "description": "Manage and invoke instances of your Steamship Packages."
      },
      "workspace": {
        "description": "Manage Steamship Workspaces."
      },
      "project": {
        "description": "Utilities for project management."
      },
      "task": {
        "description": "Utilities for task management."
      },
      "user": {
        "description": "Utilities for user management."
      },
      "plugin": {
        "description": "Create and deploy Steamship Plugins."
      },
      "plugin:version": {
        "description": "Manage and create versions of your Steamship Plugins."
      },
      "version": {
        "description": "Display the Steamship CLI Vesrion."
      }
    },
    "additionalHelpFlags": [
      "-h"
    ],
    "additionalVersionFlags": [
      "-v"
    ],
    "plugins": [
      "@oclif/plugin-help",
      "@oclif/plugin-version"
    ]
  },
  "repository": "https://github.com/steamship-core/steamship-cli",
  "scripts": {
    "build": "shx rm -rf dist && tsc -b",
    "lint": "eslint . --ext .ts --config .eslintrc",
    "postpack": "rm -f oclif.manifest.json",
    "posttest": "yarn lint",
    "prepack": "yarn build && oclif manifest && oclif readme",
    "fix": "run-s fix:*",
    "fix:prettier": "prettier \"src/**/*.ts\" --write",
    "fix:lint": "eslint src --ext .ts --fix",
    "test": "rm -rf dist && tsc -b && nyc --extension .ts mocha --forbid-only \"test/**/*.test.ts\"",
    "version": "2.2.12",
    "create-link": "ln -s `pwd`/bin/run.js /usr/local/bin/ship",
    "build-steamship": "cd node_modules/@steamship/client && yarn && yarn build",
    "clean-steamship-cache": "yarn cache ls | grep steamship | xargs yarn cache clean",
    "create-dev-link": "rm -rf node_modules/@steamship/client && ln -s `pwd`/../typescript-client node_modules/@steamship/client"
  },
  "types": "dist/index.d.ts"
}
