console/packages/libraries/cli/package.json
renovate[bot] ae4fed7902
fix(deps): update oclif (#1068)
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: Dotan Simha <dotansimha@gmail.com>
2023-01-19 17:08:56 +00:00

93 lines
2.6 KiB
JSON

{
"name": "@graphql-hive/cli",
"version": "0.19.12",
"description": "A CLI util to manage and control your GraphQL Hive",
"repository": {
"type": "git",
"url": "kamilkisiela/graphql-hive",
"directory": "packages/libraries/cli"
},
"homepage": "https://graphql-hive.com",
"author": {
"email": "contact@the-guild.dev",
"name": "The Guild",
"url": "https://the-guild.dev"
},
"license": "MIT",
"engines": {
"node": ">=14.0.0"
},
"bin": {
"hive": "./bin/run"
},
"main": "dist/index.js",
"files": [
"/bin",
"/dist",
"/oclif.manifest.json"
],
"keywords": [
"graphql"
],
"scripts": {
"build": "tsc",
"oclif:pack": "npm pack && pnpm oclif pack tarballs --no-xz",
"oclif:upload": "pnpm oclif upload tarballs --no-xz",
"postpack": "rm -f oclif.manifest.json",
"prebuild": "rimraf dist",
"prepack": "rimraf lib && tsc -b && oclif manifest && oclif readme",
"schema:check:federation": "pnpm start schema:check examples/federation.graphql --service reviews",
"schema:check:single": "pnpm start schema:check examples/single.graphql",
"schema:check:stitching": "pnpm start schema:check examples/stitching.graphql --service posts",
"schema:publish:federation": "pnpm start schema:publish --service reviews examples/federation.reviews.graphql",
"start": "./bin/dev",
"version": "oclif readme && git add README.md"
},
"dependencies": {
"@graphql-hive/core": "0.2.3",
"@graphql-inspector/core": "~3.4.0",
"@graphql-tools/code-file-loader": "~7.3.6",
"@graphql-tools/graphql-file-loader": "~7.5.5",
"@graphql-tools/json-file-loader": "~7.4.6",
"@graphql-tools/load": "~7.8.0",
"@graphql-tools/url-loader": "~7.17.0",
"@graphql-tools/utils": "9.1.4",
"@oclif/core": "^1.23.0",
"@oclif/plugin-help": "5.2.0",
"@oclif/plugin-update": "3.0.12",
"colors": "1.4.0",
"env-ci": "7.3.0",
"git-parse": "3.0.1",
"graphql": "^16.0.0",
"graphql-request": "5.1.0",
"graphql-tag": "2.12.6",
"log-symbols": "4.1.0",
"mkdirp": "2.1.3",
"rimraf": "3.0.2",
"ts-node": "10.9.1",
"tslib": "2.4.1"
},
"devDependencies": {
"@graphql-codegen/typescript-graphql-request": "4.5.8",
"@types/env-ci": "3.1.1",
"@types/mkdirp": "1.0.2",
"oclif": "3.5.0"
},
"publishConfig": {
"registry": "https://registry.npmjs.org",
"access": "public"
},
"oclif": {
"commands": "./dist/commands",
"bin": "hive",
"plugins": [
"@oclif/plugin-help",
"@oclif/plugin-update"
],
"update": {
"s3": {
"bucket": "graphql-hive-cli"
}
}
}
}