@graphql-hive/cli
Version:
A CLI util to manage and control your GraphQL Hive
91 lines • 2.63 kB
JSON
{
"name": "@graphql-hive/cli",
"version": "0.20.3-alpha-20230417164110-27210cbf",
"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"
],
"dependencies": {
"@graphql-hive/core": "0.2.3",
"@graphql-inspector/core": "~4.0.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.2.1",
"@oclif/core": "^1.23.0",
"@oclif/plugin-help": "5.2.9",
"@oclif/plugin-update": "3.1.9",
"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.6",
"rimraf": "4.4.1",
"ts-node": "10.9.1",
"tslib": "2.5.0"
},
"devDependencies": {
"@graphql-codegen/typescript-graphql-request": "4.5.9",
"@types/env-ci": "3.1.1",
"@types/mkdirp": "1.0.2",
"oclif": "3.7.3"
},
"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"
}
}
},
"scripts": {
"build": "tsc",
"oclif:pack": "npm pack && pnpm oclif pack tarballs --no-xz",
"oclif:upload": "pnpm oclif upload tarballs --no-xz",
"prebuild": "rimraf dist",
"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 --service posts examples/stitching.posts.graphql",
"schema:publish:federation": "pnpm start schema:publish --service reviews --url reviews.com/graphql examples/federation.reviews.graphql",
"start": "./bin/dev",
"version": "oclif readme && git add README.md"
}
}