@graphql-markdown/cli
Version:
NodeJS CLI for generating Markdown documentation from a GraphQL schema.
82 lines (81 loc) • 1.84 kB
JSON
{
"name": "@graphql-markdown/cli",
"homepage": "https://graphql-markdown.dev",
"description": "NodeJS CLI for generating Markdown documentation from a GraphQL schema.",
"bugs": {
"url": "https://github.com/graphql-markdown/graphql-markdown/issues"
},
"version": "0.5.0",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/graphql-markdown/graphql-markdown.git",
"directory": "packages/cli"
},
"keywords": [
"cli",
"graphql",
"graphql-schema",
"documentation",
"markdown",
"graphql-markdown"
],
"author": {
"name": "Gregory Heitz"
},
"main": "dist/index.js",
"types": "dist/index.d.ts",
"bin": {
"gqlmd": "./dist/main.js"
},
"exports": {
".": {
"require": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
},
"import": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
},
"default": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
}
},
"./package.json": "./package.json"
},
"scripts": {
"stryker": "stryker run",
"clean": "tsgo --build --clean && rm -rf ./dist",
"docs": "typedoc",
"build": "tsgo --build"
},
"dependencies": {
"@graphql-markdown/core": "workspace:^",
"@graphql-markdown/logger": "workspace:^",
"@graphql-markdown/printer-legacy": "workspace:^",
"commander": "^5.1.0",
"graphql-config": "catalog:"
},
"devDependencies": {
"@graphql-markdown/types": "workspace:^"
},
"directories": {
"test": "tests"
},
"engines": {
"node": ">=20"
},
"publishConfig": {
"directory": "dist",
"access": "public",
"scripts": {}
},
"typescript": {
"definition": "dist/cli.d.ts"
},
"files": [
"dist"
]
}