mirror of
https://github.com/graphql-hive/console
synced 2026-04-21 14:37:17 +00:00
Co-authored-by: Kamil Kisiela <kamil.kisiela@gmail.com> Co-authored-by: Laurin Quast <laurinquast@googlemail.com>
94 lines
2.8 KiB
JSON
94 lines
2.8 KiB
JSON
{
|
|
"name": "@graphql-hive/cli",
|
|
"version": "0.33.1",
|
|
"description": "A CLI util to manage and control your GraphQL Hive",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "kamilkisiela/graphql-hive",
|
|
"directory": "packages/libraries/cli"
|
|
},
|
|
"homepage": "https://graphql-hive.com",
|
|
"author": {
|
|
"email": "contact@the-guild.dev",
|
|
"name": "The Guild",
|
|
"url": "https://the-guild.dev"
|
|
},
|
|
"license": "MIT",
|
|
"engines": {
|
|
"node": ">=14.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": "rimraf lib && tsc -b && 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": "0.2.3",
|
|
"@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.1.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.16",
|
|
"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.22.4"
|
|
},
|
|
"devDependencies": {
|
|
"@types/env-ci": "3.1.4",
|
|
"@types/mkdirp": "1.0.2",
|
|
"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"
|
|
}
|
|
}
|
|
}
|
|
}
|