2022-05-18 07:26:57 +00:00
|
|
|
{
|
|
|
|
|
"name": "@graphql-hive/cli",
|
2025-12-01 13:24:32 +00:00
|
|
|
"version": "0.56.0",
|
2022-11-24 10:00:41 +00:00
|
|
|
"description": "A CLI util to manage and control your GraphQL Hive",
|
2022-05-18 07:26:57 +00:00
|
|
|
"repository": {
|
|
|
|
|
"type": "git",
|
2024-10-14 14:36:45 +00:00
|
|
|
"url": "graphql-hive/platform",
|
2022-05-18 07:26:57 +00:00
|
|
|
"directory": "packages/libraries/cli"
|
|
|
|
|
},
|
2024-04-23 15:51:43 +00:00
|
|
|
"homepage": "https://the-guild.dev/graphql/hive",
|
2022-11-24 10:00:41 +00:00
|
|
|
"author": {
|
|
|
|
|
"email": "contact@the-guild.dev",
|
|
|
|
|
"name": "The Guild",
|
|
|
|
|
"url": "https://the-guild.dev"
|
|
|
|
|
},
|
2022-05-18 07:26:57 +00:00
|
|
|
"license": "MIT",
|
2022-11-24 10:00:41 +00:00
|
|
|
"engines": {
|
2024-04-23 15:51:43 +00:00
|
|
|
"node": ">=16.0.0"
|
2022-11-24 10:00:41 +00:00
|
|
|
},
|
2022-05-18 07:26:57 +00:00
|
|
|
"bin": {
|
|
|
|
|
"hive": "./bin/run"
|
|
|
|
|
},
|
2022-11-11 08:54:11 +00:00
|
|
|
"main": "dist/index.js",
|
2022-05-18 07:26:57 +00:00
|
|
|
"files": [
|
|
|
|
|
"/bin",
|
|
|
|
|
"/dist",
|
|
|
|
|
"/oclif.manifest.json"
|
|
|
|
|
],
|
2022-11-24 10:00:41 +00:00
|
|
|
"keywords": [
|
|
|
|
|
"graphql"
|
|
|
|
|
],
|
2022-05-18 07:26:57 +00:00
|
|
|
"scripts": {
|
2025-01-09 14:36:36 +00:00
|
|
|
"build": "tsc --build",
|
2025-01-09 13:42:25 +00:00
|
|
|
"build:watch": "tsc --build --watch",
|
2024-07-19 11:33:31 +00:00
|
|
|
"oclif:pack": "npm pack && pnpm oclif pack tarballs --no-xz",
|
2025-10-27 09:42:45 +00:00
|
|
|
"oclif:readme": "pnpm oclif readme && npx prettier --write README.md",
|
2024-07-19 11:33:31 +00:00
|
|
|
"oclif:upload": "pnpm oclif upload tarballs --no-xz",
|
2022-11-24 10:00:41 +00:00
|
|
|
"postpack": "rm -f oclif.manifest.json",
|
2025-01-09 14:36:36 +00:00
|
|
|
"prebuild": "tsc --build --clean",
|
2024-04-23 15:51:43 +00:00
|
|
|
"prepack": "node scripts/replace-workspace.mjs rimraf lib && tsc -b && oclif manifest && oclif readme",
|
2024-04-03 13:48:52 +00:00
|
|
|
"prepublishOnly": "oclif manifest && oclif readme",
|
2025-05-15 22:04:57 +00:00
|
|
|
"schema:check:federation": "pnpm start schema:check examples/federation.reviews.graphql --service reviews",
|
2022-11-01 00:11:53 +00:00
|
|
|
"schema:check:single": "pnpm start schema:check examples/single.graphql",
|
2023-02-09 15:45:36 +00:00
|
|
|
"schema:check:stitching": "pnpm start schema:check --service posts examples/stitching.posts.graphql",
|
2025-01-08 12:16:55 +00:00
|
|
|
"schema:fetch:subgraphs": "pnpm start schema:fetch --type=subgraphs",
|
2025-05-15 22:04:57 +00:00
|
|
|
"schema:publish:federation": "pnpm start schema:publish --service reviews --url http://reviews.graphql-hive.dev/graphql examples/federation.reviews.graphql",
|
2022-11-24 10:00:41 +00:00
|
|
|
"start": "./bin/dev",
|
|
|
|
|
"version": "oclif readme && git add README.md"
|
2022-05-18 07:26:57 +00:00
|
|
|
},
|
|
|
|
|
"dependencies": {
|
2024-04-23 15:51:43 +00:00
|
|
|
"@graphql-hive/core": "workspace:*",
|
2025-11-25 17:17:06 +00:00
|
|
|
"@graphql-inspector/core": "7.0.3",
|
2024-01-31 08:29:55 +00:00
|
|
|
"@graphql-tools/code-file-loader": "~8.1.0",
|
2025-09-14 12:12:12 +00:00
|
|
|
"@graphql-tools/graphql-file-loader": "~8.1.0",
|
2023-05-21 09:39:20 +00:00
|
|
|
"@graphql-tools/json-file-loader": "~8.0.0",
|
2025-09-14 12:12:12 +00:00
|
|
|
"@graphql-tools/load": "~8.1.0",
|
2023-05-21 09:39:20 +00:00
|
|
|
"@graphql-tools/url-loader": "~8.0.0",
|
2025-09-14 12:12:12 +00:00
|
|
|
"@graphql-tools/utils": "10.9.1",
|
2023-07-04 15:19:45 +00:00
|
|
|
"@graphql-typed-document-node/core": "3.2.0",
|
2024-05-23 09:33:53 +00:00
|
|
|
"@oclif/core": "^3.26.6",
|
|
|
|
|
"@oclif/plugin-help": "6.0.22",
|
|
|
|
|
"@oclif/plugin-update": "4.2.13",
|
2025-12-10 13:24:03 +00:00
|
|
|
"@theguild/federation-composition": "0.21.1",
|
2025-11-10 08:27:37 +00:00
|
|
|
"cli-table3": "0.6.5",
|
2022-05-18 07:26:57 +00:00
|
|
|
"colors": "1.4.0",
|
2022-12-15 09:02:12 +00:00
|
|
|
"env-ci": "7.3.0",
|
2023-09-27 07:16:05 +00:00
|
|
|
"graphql": "^16.8.1",
|
2022-05-18 07:26:57 +00:00
|
|
|
"graphql-tag": "2.12.6",
|
2024-11-17 10:57:43 +00:00
|
|
|
"tslib": "2.8.1",
|
2025-09-14 13:16:15 +00:00
|
|
|
"zod": "3.25.76"
|
2022-05-18 07:26:57 +00:00
|
|
|
},
|
|
|
|
|
"devDependencies": {
|
2023-11-07 08:14:46 +00:00
|
|
|
"@types/env-ci": "3.1.4",
|
2024-06-25 08:29:04 +00:00
|
|
|
"graphql": "16.9.0",
|
2024-10-15 11:39:51 +00:00
|
|
|
"oclif": "4.13.6",
|
2023-06-13 15:54:14 +00:00
|
|
|
"rimraf": "4.4.1",
|
2024-10-27 15:48:46 +00:00
|
|
|
"tsx": "4.19.2",
|
2025-01-09 07:02:14 +00:00
|
|
|
"typescript": "5.7.3"
|
2022-11-24 10:00:41 +00:00
|
|
|
},
|
|
|
|
|
"publishConfig": {
|
|
|
|
|
"registry": "https://registry.npmjs.org",
|
|
|
|
|
"access": "public"
|
2022-05-18 07:26:57 +00:00
|
|
|
},
|
|
|
|
|
"oclif": {
|
|
|
|
|
"commands": "./dist/commands",
|
|
|
|
|
"bin": "hive",
|
|
|
|
|
"plugins": [
|
|
|
|
|
"@oclif/plugin-help",
|
|
|
|
|
"@oclif/plugin-update"
|
|
|
|
|
],
|
|
|
|
|
"update": {
|
2024-07-26 07:51:03 +00:00
|
|
|
"node": {
|
|
|
|
|
"options": [
|
|
|
|
|
"--no-deprecation"
|
|
|
|
|
]
|
|
|
|
|
},
|
2022-05-18 07:26:57 +00:00
|
|
|
"s3": {
|
2023-11-24 07:44:17 +00:00
|
|
|
"host": "https://cli.graphql-hive.com/",
|
2022-05-18 07:50:28 +00:00
|
|
|
"bucket": "graphql-hive-cli"
|
2022-05-18 07:26:57 +00:00
|
|
|
}
|
2025-01-23 17:08:13 +00:00
|
|
|
},
|
|
|
|
|
"hooks": {
|
|
|
|
|
"command_not_found": "./dist/hooks/command-not-found"
|
2022-05-18 07:26:57 +00:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|