{
    "name": "@theorchard/graphql-integration",
    "version": "2.3.0",
    "description": "Utilities to assist with GraphQL integration tests.",
    "main": "dist/cjs/src/index.js",
    "module": "dist/esm/src/index.d.ts",
    "author": "The Orchard",
    "publishConfig": {
        "registry": "https://npm.pkg.github.com"
    },
    "repository": {
        "type": "git",
        "url": "git+https://github.com/theorchard/orchard-suite.git"
    },
    "prettier": "@theorchard/prettier-config",
    "eslintConfig": {
        "extends": "@theorchard/ts-prettier"
    },
    "bin": {
        "graphql-integration-codegen": "./dist/cjs/src/codegen/codegen.js",
        "graphql-integration-coverage": "./dist/cjs/src/testCoverage/coverageCli.js"
    },
    "scripts": {
        "build:cjs": "tsc --build ./tsconfig.cjs.json",
        "build:esm": "tsc --build ./tsconfig.esm.json",
        "build": "pnpm run build:esm && pnpm run build:cjs",
        "clean": "rm -rf dist && rm -rf .cache",
        "format": "prettier --write .",
        "format:check": "prettier --check .",
        "lint": "eslint --ext .js,.ts,.tsx,.jsx --cache --cache-location .cache/.eslintcache src",
        "test:unit": "jest",
        "test": "pnpm lint && pnpm test:unit"
    },
    "files": [
        "dist"
    ],
    "dependencies": {
        "@graphql-codegen/add": "^6.0.0",
        "@graphql-codegen/cli": "^6.2.1",
        "@graphql-codegen/typescript": "^5.0.9",
        "@graphql-codegen/typescript-operations": "^5.0.9",
        "commander": "^14.0.0",
        "graphql": "^16.8.1",
        "dotenv": "^16.5.0"
    },
    "peerDependencies": {
        "dd-trace": ">=5.x"
    },
    "devDependencies": {
        "dd-trace": "^5.80.0"
    }
}
