UNPKG

@graphql-markdown/docusaurus

Version:

Docusaurus plugin for generating Markdown documentation from a GraphQL schema.

107 lines (106 loc) 3.06 kB
{ "name": "@graphql-markdown/docusaurus", "homepage": "https://graphql-markdown.dev", "description": "Docusaurus plugin for generating Markdown documentation from a GraphQL schema.", "bugs": { "url": "https://github.com/graphql-markdown/graphql-markdown/issues" }, "version": "1.35.0", "license": "MIT", "repository": { "type": "git", "url": "git+https://github.com/graphql-markdown/graphql-markdown.git", "directory": "packages/docusaurus" }, "keywords": [ "docusaurus", "graphql", "graphql-schema", "documentation", "plugin", "markdown", "graphql-markdown" ], "author": { "name": "Gregory Heitz" }, "main": "dist/index.js", "types": "dist/index.d.ts", "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" } }, "./mdx": { "require": { "types": "./dist/mdx/index.d.ts", "default": "./dist/mdx/index.js" }, "import": { "types": "./dist/mdx/index.d.ts", "default": "./dist/mdx/index.js" }, "default": { "types": "./dist/mdx/index.d.ts", "default": "./dist/mdx/index.js" } }, "./package.json": "./package.json" }, "scripts": { "stryker": "stryker run", "clean": "tsgo --build --clean && rm -rf ./dist", "docs": "typedoc --options typedoc.config.mjs", "build": "tsgo --build", "lint": "eslint --config ../../packages/tooling-config/eslint/config.ts \"{src,tests}/**/*.{ts,js,json,gql}\"", "lint:fix": "eslint --config ../../packages/tooling-config/eslint/config.ts \"{src,tests}/**/*.{ts,js,json,gql}\" --fix", "prettier": "prettier \"{src,tests,assets}/**/*.{ts,js,json,md,gql}\" --check", "prettier:fix": "prettier \"{src,tests,assets}/**/*.{ts,js,json,md,gql}\" --write", "ts:check": "tsgo --noEmit", "test": "jest", "test:unit": "jest --passWithNoTests --testPathPatterns=tests/unit", "test:integration": "jest --passWithNoTests --testPathPatterns=tests/integration", "test:ci": "jest --passWithNoTests --ci --silent --randomize --runInBand", "test:watch": "jest --watch" }, "dependencies": { "@graphql-markdown/cli": "^1.0.0", "@graphql-markdown/formatters": "^1.0.0", "@graphql-markdown/logger": "^1.0.7", "@graphql-markdown/types": "^1.13.0", "@graphql-markdown/utils": "^1.12.0", "@docusaurus/utils": "3.10.1" }, "devDependencies": { "@docusaurus/types": "3.10.1", "@graphql-markdown/tooling-config": "^1.0.0" }, "peerDependencies": { "@docusaurus/logger": "*" }, "directories": { "test": "tests" }, "engines": { "node": ">=20" }, "publishConfig": { "access": "public" }, "typescript": { "definition": "dist/index.d.ts" }, "files": [ "dist" ] }