mirror of
https://github.com/graphql-hive/console
synced 2026-04-21 22:47:17 +00:00
106 lines
3.2 KiB
JSON
106 lines
3.2 KiB
JSON
{
|
|
"name": "@graphql-hive/cli",
|
|
"version": "0.59.0",
|
|
"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"
|
|
],
|
|
"scripts": {
|
|
"build": "tsc --build",
|
|
"build:watch": "tsc --build --watch",
|
|
"oclif:pack": "npm pack && pnpm oclif pack tarballs --no-xz",
|
|
"oclif:readme": "pnpm oclif readme && npx prettier --write README.md",
|
|
"oclif:upload": "pnpm oclif upload tarballs --no-xz",
|
|
"postpack": "rm -f oclif.manifest.json",
|
|
"prebuild": "tsc --build --clean",
|
|
"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.reviews.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 http://reviews.graphql-hive.dev/graphql examples/federation.reviews.graphql",
|
|
"start": "./bin/dev",
|
|
"version": "oclif readme && git add README.md"
|
|
},
|
|
"dependencies": {
|
|
"@graphql-hive/core": "workspace:*",
|
|
"@graphql-inspector/core": "7.1.2",
|
|
"@graphql-tools/code-file-loader": "~8.1.0",
|
|
"@graphql-tools/graphql-file-loader": "~8.1.0",
|
|
"@graphql-tools/json-file-loader": "~8.0.0",
|
|
"@graphql-tools/load": "~8.1.0",
|
|
"@graphql-tools/url-loader": "~8.0.0",
|
|
"@graphql-tools/utils": "10.9.1",
|
|
"@graphql-typed-document-node/core": "3.2.0",
|
|
"@oclif/core": "3.26.6",
|
|
"@oclif/plugin-help": "6.2.36",
|
|
"@oclif/plugin-update": "4.7.16",
|
|
"@theguild/federation-composition": "0.22.1",
|
|
"cli-table3": "0.6.5",
|
|
"colors": "1.4.0",
|
|
"env-ci": "7.3.0",
|
|
"graphql": "^16.8.1",
|
|
"graphql-tag": "2.12.6",
|
|
"tslib": "2.8.1",
|
|
"zod": "3.25.76"
|
|
},
|
|
"devDependencies": {
|
|
"@types/env-ci": "3.1.4",
|
|
"graphql": "16.9.0",
|
|
"oclif": "4.22.65",
|
|
"rimraf": "6.1.3",
|
|
"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"
|
|
}
|
|
}
|
|
}
|