2022-05-18 07:26:57 +00:00
|
|
|
{
|
|
|
|
|
"name": "@graphql-hive/cli",
|
2022-11-22 17:03:46 +00:00
|
|
|
"version": "0.19.10",
|
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",
|
|
|
|
|
"url": "kamilkisiela/graphql-hive",
|
|
|
|
|
"directory": "packages/libraries/cli"
|
|
|
|
|
},
|
2022-05-25 13:18:31 +00:00
|
|
|
"homepage": "https://graphql-hive.com",
|
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": {
|
|
|
|
|
"node": ">=14.0.0"
|
|
|
|
|
},
|
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": {
|
|
|
|
|
"build": "tsc",
|
2022-11-11 10:46:18 +00:00
|
|
|
"oclif:pack": "npm pack && pnpm oclif pack tarballs --no-xz",
|
2022-11-11 11:02:21 +00:00
|
|
|
"oclif:upload": "pnpm oclif upload tarballs --no-xz",
|
2022-11-24 10:00:41 +00:00
|
|
|
"postpack": "rm -f oclif.manifest.json",
|
|
|
|
|
"prebuild": "rimraf dist",
|
|
|
|
|
"prepack": "rimraf lib && tsc -b && oclif manifest && oclif readme",
|
|
|
|
|
"schema:check:federation": "pnpm start schema:check examples/federation.graphql --service reviews",
|
2022-11-01 00:11:53 +00:00
|
|
|
"schema:check:single": "pnpm start schema:check examples/single.graphql",
|
|
|
|
|
"schema:check:stitching": "pnpm start schema:check examples/stitching.graphql --service posts",
|
2022-11-24 10:00:41 +00:00
|
|
|
"schema:publish:federation": "pnpm start schema:publish --service reviews examples/federation.reviews.graphql",
|
|
|
|
|
"start": "./bin/dev",
|
|
|
|
|
"version": "oclif readme && git add README.md"
|
2022-05-18 07:26:57 +00:00
|
|
|
},
|
|
|
|
|
"dependencies": {
|
2022-11-22 17:03:46 +00:00
|
|
|
"@graphql-hive/core": "0.2.3",
|
2022-12-22 07:36:36 +00:00
|
|
|
"@graphql-inspector/core": "~3.4.0",
|
2022-11-10 11:43:24 +00:00
|
|
|
"@graphql-tools/code-file-loader": "~7.3.6",
|
|
|
|
|
"@graphql-tools/graphql-file-loader": "~7.5.5",
|
|
|
|
|
"@graphql-tools/json-file-loader": "~7.4.6",
|
2022-12-27 12:27:07 +00:00
|
|
|
"@graphql-tools/load": "~7.8.0",
|
2022-11-24 10:00:41 +00:00
|
|
|
"@graphql-tools/url-loader": "~7.16.4",
|
2022-12-27 12:27:07 +00:00
|
|
|
"@graphql-tools/utils": "8.13.1",
|
2022-12-28 11:38:53 +00:00
|
|
|
"@oclif/core": "^1.23.0",
|
2023-01-11 14:59:55 +00:00
|
|
|
"@oclif/plugin-help": "5.1.22",
|
|
|
|
|
"@oclif/plugin-update": "3.0.12",
|
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",
|
2022-12-27 22:36:08 +00:00
|
|
|
"git-parse": "3.0.1",
|
2022-06-29 12:58:08 +00:00
|
|
|
"graphql": "^16.0.0",
|
2022-12-15 09:01:15 +00:00
|
|
|
"graphql-request": "4.3.0",
|
2022-05-18 07:26:57 +00:00
|
|
|
"graphql-tag": "2.12.6",
|
|
|
|
|
"log-symbols": "4.1.0",
|
|
|
|
|
"mkdirp": "1.0.4",
|
2022-11-11 10:46:18 +00:00
|
|
|
"rimraf": "3.0.2",
|
2022-11-24 10:00:41 +00:00
|
|
|
"ts-node": "10.9.1",
|
|
|
|
|
"tslib": "2.4.1"
|
2022-05-18 07:26:57 +00:00
|
|
|
},
|
|
|
|
|
"devDependencies": {
|
2022-12-27 22:36:08 +00:00
|
|
|
"@graphql-codegen/typescript-graphql-request": "4.5.8",
|
2022-05-18 07:26:57 +00:00
|
|
|
"@types/env-ci": "3.1.1",
|
2022-11-24 10:00:41 +00:00
|
|
|
"@types/mkdirp": "1.0.2",
|
2022-12-28 11:38:53 +00:00
|
|
|
"oclif": "3.4.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": {
|
|
|
|
|
"s3": {
|
2022-05-18 07:50:28 +00:00
|
|
|
"bucket": "graphql-hive-cli"
|
2022-05-18 07:26:57 +00:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|