console/packages/libraries/cli/package.json
2022-11-11 09:54:11 +01:00

89 lines
2.4 KiB
JSON

{
"name": "@graphql-hive/cli",
"description": "A CLI util to manage and control your GraphQL Hive",
"version": "0.19.4",
"author": {
"email": "contact@the-guild.dev",
"name": "The Guild",
"url": "https://the-guild.dev"
},
"repository": {
"type": "git",
"url": "kamilkisiela/graphql-hive",
"directory": "packages/libraries/cli"
},
"homepage": "https://graphql-hive.com",
"license": "MIT",
"keywords": [
"graphql"
],
"bin": {
"hive": "./bin/run"
},
"main": "dist/index.js",
"files": [
"/bin",
"/dist",
"/oclif.manifest.json"
],
"scripts": {
"start": "./bin/dev",
"build": "tsc",
"postpack": "rm -f oclif.manifest.json",
"prepack": "npm shrinkwrap && rimraf lib && tsc -b && oclif manifest && oclif readme",
"version": "oclif readme && git add README.md",
"schema:check:single": "pnpm start schema:check examples/single.graphql",
"schema:check:stitching": "pnpm start schema:check examples/stitching.graphql --service posts",
"schema:check:federation": "pnpm start schema:check examples/federation.graphql --service reviews",
"schema:publish:federation": "pnpm start schema:publish --service reviews examples/federation.reviews.graphql"
},
"dependencies": {
"@graphql-hive/core": "0.2.2",
"@graphql-inspector/core": "~3.2.0",
"@graphql-tools/code-file-loader": "~7.3.6",
"@graphql-tools/graphql-file-loader": "~7.5.5",
"@graphql-tools/json-file-loader": "~7.4.6",
"@graphql-tools/url-loader": "~7.16.4",
"@graphql-tools/load": "~7.7.7",
"@graphql-tools/utils": "8.12.0",
"@oclif/core": "^1.20.4",
"@oclif/plugin-help": "5.1.18",
"@oclif/plugin-update": "3.0.6",
"colors": "1.4.0",
"env-ci": "7.1.0",
"git-parse": "2.1.2",
"graphql": "^16.0.0",
"graphql-request": "4.1.0",
"graphql-tag": "2.12.6",
"log-symbols": "4.1.0",
"mkdirp": "1.0.4",
"tslib": "2.4.0",
"ts-node": "10.9.1"
},
"devDependencies": {
"oclif": "^3.2.25",
"@types/env-ci": "3.1.1",
"@types/git-parse": "2.1.2",
"@types/mkdirp": "1.0.2"
},
"oclif": {
"commands": "./dist/commands",
"bin": "hive",
"plugins": [
"@oclif/plugin-help",
"@oclif/plugin-update"
],
"update": {
"s3": {
"bucket": "graphql-hive-cli"
}
}
},
"publishConfig": {
"registry": "https://registry.npmjs.org",
"access": "public"
},
"engines": {
"node": ">=14.0.0"
}
}