UNPKG

@graphql-hive/cli

Version:

A CLI util to manage and control your GraphQL Hive

101 lines 3.08 kB
{ "name": "@graphql-hive/cli", "version": "0.49.1-alpha-20250319204917-b693c4f5284ce91daeebe4d10a5b7fa260d712bb", "description": "A CLI util to manage and control your GraphQL Hive", "repository": { "type": "git", "url": "graphql-hive/platform", "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" ], "dependencies": { "@graphql-hive/core": "0.10.1-alpha-20250319204917-b693c4f5284ce91daeebe4d10a5b7fa260d712bb", "@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.7.2", "@graphql-typed-document-node/core": "3.2.0", "@oclif/core": "^3.26.6", "@oclif/plugin-help": "6.0.22", "@oclif/plugin-update": "4.2.13", "@theguild/federation-composition": "0.14.4", "colors": "1.4.0", "env-ci": "7.3.0", "graphql": "^16.8.1", "graphql-tag": "2.12.6", "tslib": "2.8.1", "zod": "3.24.1" }, "devDependencies": { "@types/env-ci": "3.1.4", "graphql": "16.9.0", "oclif": "4.13.6", "rimraf": "4.4.1", "tsx": "4.19.2", "typescript": "5.7.3" }, "publishConfig": { "registry": "https://registry.npmjs.org", "access": "public" }, "oclif": { "commands": "./dist/commands", "bin": "hive", "plugins": [ "@oclif/plugin-help", "@oclif/plugin-update" ], "update": { "node": { "options": [ "--no-deprecation" ] }, "s3": { "host": "https://cli.graphql-hive.com/", "bucket": "graphql-hive-cli" } }, "hooks": { "command_not_found": "./dist/hooks/command-not-found" } }, "scripts": { "build": "tsc --build", "build:watch": "tsc --build --watch", "oclif:pack": "npm pack && pnpm oclif pack tarballs --no-xz", "oclif:upload": "pnpm oclif upload tarballs --no-xz", "prebuild": "tsc --build --clean", "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:fetch:subgraphs": "pnpm start schema:fetch --type=subgraphs", "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" } }