{
  "name": "@routex-hq/notion-page-to-html",
  "version": "1.2.0-build.0",
  "description": "It converts public notion pages to html from url",
  "main": "dist/index.js",
  "module": "dist/index.mjs",
  "types": "dist/index.d.ts",
  "exports": {
    ".": {
      "types": "./dist/index.d.ts",
      "require": "./dist/index.js",
      "import": "./dist/index.mjs",
      "default": "./dist/index.js"
    }
  },
  "files": [
    "dist"
  ],
  "repository": {
    "type": "git",
    "url": "git+https://github.com/asnunes/notion-page-to-html.git"
  },
  "keywords": [
    "notion",
    "page",
    "html"
  ],
  "author": "Alexandre Nunes",
  "license": "MIT",
  "bugs": {
    "url": "https://github.com/asnunes/notion-page-to-html/issues"
  },
  "homepage": "https://github.com/asnunes/notion-page-to-html#readme",
  "devDependencies": {
    "@types/jest": "^27.0.2",
    "@types/nock": "^11.1.0",
    "@types/node": "^18.7.23",
    "@typescript-eslint/eslint-plugin": "^4.31.2",
    "@typescript-eslint/parser": "^4.31.2",
    "esbuild-plugin-alias": "^0.2.1",
    "eslint": "^7.32.0",
    "eslint-config-prettier": "^8.3.0",
    "eslint-plugin-prettier": "^4.0.0",
    "git-commit-msg-linter": "^3.2.8",
    "husky": "^7.0.2",
    "jest": "^27.2.2",
    "lint-staged": "^11.1.2",
    "nock": "^13.1.3",
    "prettier": "^2.4.1",
    "ts-jest": "^27.0.5",
    "tsup": "^6.2.3",
    "typescript": "^4.4.3"
  },
  "scripts": {
    "build": "tsup",
    "lint": "eslint '*/**/*.{js,ts}' --quiet --fix",
    "lint:staged": "lint-staged",
    "test": "jest --passWithNoTests --silent --noStackTrace --runInBand",
    "test:watch": "npm test -- --watch",
    "test:verbose": "jest --passWithNoTests --runInBand",
    "test:staged": "npm test -- --findRelatedTests",
    "test:ci": "npm test -- --coverage"
  }
}