{
  "name": "@publissue/api",
  "version": "0.4.0-test.0",
  "description": "Publissue API",
  "type": "module",
  "main": "dist/index.js",
  "module": "dist/index.js",
  "types": "dist/index.d.ts",
  "repository": "https://github.com/renatorib/publissue",
  "author": "<hi@rena.to>",
  "license": "MIT",
  "files": [
    "dist",
    "package.json",
    "README.md",
    "LICENSE"
  ],
  "dependencies": {
    "@graphql-typed-document-node/core": "^3.2.0",
    "classnames": "^2.5.1",
    "yaml": "^2.4.5"
  },
  "devDependencies": {
    "@graphql-codegen/cli": "^5.0.2",
    "@graphql-codegen/client-preset": "^4.3.2",
    "@graphql-codegen/core": "^4.0.2",
    "@graphql-codegen/introspection": "^4.0.3",
    "@inquirer/prompts": "^5.3.2",
    "@parcel/watcher": "^2.4.1",
    "@types/node": "^20.14.12",
    "@types/semver": "^7.5.8",
    "semver": "^7.6.3"
  },
  "engines": {
    "node": ">=20"
  },
  "graphql": {
    "schema": "./src/__generated__/schema.graphql",
    "documents": "**/*.{graphql,js,ts,jsx,tsx}",
    "extensions": {
      "languageService": {
        "cacheSchemaFileForLookup": true,
        "enableValidation": false
      }
    }
  },
  "scripts": {
    "gqlcodegen": "tsx scripts/gqlcodegen.ts",
    "introspect": "tsx scripts/introspect.ts",
    "type-check": "tsc --noEmit",
    "test": "pnpm type-check",
    "prebuild": "pnpm gqlcodegen",
    "build": "rm -rf ./dist && tsup",
    "publish-current": "tsx scripts/publish.ts",
    "publish-patch": "tsx scripts/publish.ts --bump=patch",
    "publish-minor": "tsx scripts/publish.ts --bump=minor",
    "publish-major": "tsx scripts/publish.ts --bump=major"
  }
}