{
  "name": "@potluri/discourse-on-ghost",
  "version": "0.2.1",
  "main": "build/index.js",
  "repository": "https://github.com/vikaspotluri123/discourse-on-ghost",
  "authors": [
    "Vikas Potluri <vikaspotluri123.github@gmail.com>"
  ],
  "license": "MIT",
  "type": "module",
  "module": "build/index.js",
  "files": [
    "build"
  ],
  "scripts": {
    "dev": "node scripts/dev.js",
    "lint": "xo && tsc",
    "test": "echo no tests defined",
    "prepublish": "yarn build",
    "build": "esbuild `find src -name '*.ts'` --outdir=build --platform=node --target=node16  --format=esm"
  },
  "dependencies": {
    "@tryghost/admin-api": "^1.13.6",
    "@tryghost/errors": "^1.2.25",
    "@tryghost/logging": "^2.4.5",
    "dotenv": "^16.0.3",
    "express": "^4.18.2",
    "node-fetch": "^3.3.1",
    "uuid": "^9.0.0"
  },
  "devDependencies": {
    "@gradebook/release-utils": "^0.7.0",
    "@types/express": "^4.17.17",
    "@types/jsonwebtoken": "^9.0.2",
    "@types/uuid": "^9.0.1",
    "chai": "^4.3.7",
    "esbuild": "^0.17.19",
    "mocha": "^10.2.0",
    "nodemon": "^2.0.22",
    "typescript": "^5.0.4",
    "xo": "0.54.2"
  },
  "gradebook": {
    "cli:addSkipCIToCommit": false,
    "cli:releaseTemplate": ".github/release_template.txt"
  },
  "xo": {
    "rules": {
      "@typescript-eslint/consistent-type-definitions": [
        "error",
        "interface"
      ],
      "@typescript-eslint/naming-convention": "off",
      "func-names": [
        "error",
        "as-needed"
      ],
      "no-use-extend-native/no-use-extend-native": "off",
      "func-name-matching": "off",
      "no-console": "error"
    },
    "overrides": [
      {
        "files": "**/*.js",
        "rules": {
          "@typescript-eslint/consistent-type-definitions": "off"
        }
      },
      {
        "files": "test/**/*.js",
        "envs": [
          "node",
          "mocha"
        ],
        "rules": {
          "func-names": "off",
          "prefer-arrow-callback": "off",
          "no-unused-expressions": "off"
        }
      }
    ]
  }
}
