mirror of
https://github.com/graphql-hive/console
synced 2026-04-21 22:47:17 +00:00
94 lines
2.7 KiB
JSON
94 lines
2.7 KiB
JSON
{
|
|
"name": "@graphql-hive/cli",
|
|
"version": "0.28.0",
|
|
"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": "4.2.2",
|
|
"@graphql-tools/code-file-loader": "~8.0.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.0.3",
|
|
"@graphql-typed-document-node/core": "3.2.0",
|
|
"@oclif/core": "^2.8.5",
|
|
"@oclif/plugin-help": "5.2.10",
|
|
"@oclif/plugin-update": "3.1.19",
|
|
"@whatwg-node/fetch": "0.9.9",
|
|
"colors": "1.4.0",
|
|
"env-ci": "7.3.0",
|
|
"graphql": "^16.0.0",
|
|
"graphql-request": "5.1.0",
|
|
"graphql-tag": "2.12.6",
|
|
"log-symbols": "4.1.0",
|
|
"mkdirp": "2.1.6",
|
|
"tslib": "2.5.3",
|
|
"zod": "3.21.4"
|
|
},
|
|
"devDependencies": {
|
|
"@types/env-ci": "3.1.1",
|
|
"@types/mkdirp": "1.0.2",
|
|
"oclif": "3.9.1",
|
|
"rimraf": "4.4.1",
|
|
"ts-node": "10.9.1"
|
|
},
|
|
"publishConfig": {
|
|
"registry": "https://registry.npmjs.org",
|
|
"access": "public"
|
|
},
|
|
"oclif": {
|
|
"commands": "./dist/commands",
|
|
"bin": "hive",
|
|
"plugins": [
|
|
"@oclif/plugin-help",
|
|
"@oclif/plugin-update"
|
|
],
|
|
"update": {
|
|
"s3": {
|
|
"bucket": "graphql-hive-cli"
|
|
}
|
|
}
|
|
}
|
|
}
|