{ "name": "@graphql-hive/cli", "version": "0.37.0", "description": "A CLI util to manage and control your GraphQL Hive", "repository": { "type": "git", "url": "kamilkisiela/graphql-hive", "directory": "packages/libraries/cli" }, "homepage": "https://the-guild.dev/graphql/hive", "author": { "email": "contact@the-guild.dev", "name": "The Guild", "url": "https://the-guild.dev" }, "license": "MIT", "engines": { "node": ">=16.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 && pnpm oclif pack win", "oclif:upload": "pnpm oclif upload tarballs --no-xz && pnpm oclif upload win", "postpack": "rm -f oclif.manifest.json", "prebuild": "rimraf dist", "prepack": "node scripts/replace-workspace.mjs rimraf lib && tsc -b && oclif manifest && oclif readme", "prepublishOnly": "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 --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" }, "dependencies": { "@graphql-hive/core": "workspace:*", "@graphql-inspector/core": "5.1.0-alpha-20231208113249-34700c8a", "@graphql-tools/code-file-loader": "~8.1.0", "@graphql-tools/graphql-file-loader": "~8.0.0", "@graphql-tools/json-file-loader": "~8.0.0", "@graphql-tools/load": "~8.0.0", "@graphql-tools/url-loader": "~8.0.0", "@graphql-tools/utils": "10.2.0", "@graphql-typed-document-node/core": "3.2.0", "@oclif/core": "^2.8.5", "@oclif/plugin-help": "5.2.20", "@oclif/plugin-update": "3.2.4", "@whatwg-node/fetch": "0.9.17", "colors": "1.4.0", "env-ci": "7.3.0", "graphql": "^16.8.1", "graphql-tag": "2.12.6", "mkdirp": "3.0.1", "tslib": "2.6.2", "zod": "3.23.6" }, "devDependencies": { "@types/env-ci": "3.1.4", "@types/mkdirp": "2.0.0", "graphql": "16.8.1", "oclif": "3.17.2", "rimraf": "4.4.1", "ts-node": "10.9.2" }, "publishConfig": { "registry": "https://registry.npmjs.org", "access": "public" }, "oclif": { "commands": "./dist/commands", "bin": "hive", "plugins": [ "@oclif/plugin-help", "@oclif/plugin-update" ], "update": { "s3": { "host": "https://cli.graphql-hive.com/", "bucket": "graphql-hive-cli" } } } }