{
  "name": "kont",
  "version": "0.5.1",
  "repository": "git@github.com:jasonkuhrt/kont.git",
  "author": "Jason Kuhrt",
  "license": "MIT",
  "files": [
    "dist-cjs",
    "dist-esm",
    "providers.d.ts",
    "providers.js"
  ],
  "exports": {
    ".": {
      "require": "./dist-cjs/index.js",
      "import": "./dist-esm/index.js"
    },
    "./providers": {
      "require": "./dist-cjs/providers.js",
      "import": "./dist-esm/providers.js"
    }
  },
  "typesVersions": {
    "*": {
      "*": [
        "./dist-cjs/entrypoints/main.d.ts"
      ],
      "providers": [
        "./dist-cjs/entrypoints/providers.d.ts"
      ]
    }
  },
  "main": "./dist-cjs/index.js",
  "module": "./dist-esm/index.js",
  "scripts": {
    "reflect:toc": "markdown-toc README.md -i --maxdepth 4 && prettier --write README.md",
    "format": "yarn format:prettier && yarn format:imports",
    "format:prettier": "prettier --write .",
    "format:imports": "format-imports src && format-imports tests",
    "format:check": "yarn format:check:imports && yarn format:check:prettier",
    "format:check:imports": "format-imports --check src tests",
    "format:check:prettier": "prettier --check .",
    "lint": "eslint . --ext .ts,.tsx --fix",
    "lint:check": "eslint . --ext .ts,.tsx --max-warnings 0",
    "dev": "yarn clean && tsc --build --watch tsconfig.cjs.json tsconfig.esm.json",
    "build": "yarn clean && yarn build:cjs && yarn build:esm && yarn ts-node scripts/simulatePackageExports",
    "build:cjs": "tsc --project tsconfig.cjs.json",
    "build:esm": "tsc --project tsconfig.esm.json",
    "test": "jest",
    "clean": "rm -rf dist-cjs dist-esm node_modules/.cache providers.d.ts providers.js",
    "release:pr": "dripip pr",
    "release:canary": "dripip preview",
    "release:stable": "dripip stable",
    "prepublishOnly": "yarn build",
    "prepare": "ts-patch install -s"
  },
  "dependencies": {
    "@jsdevtools/ono": "^7.1.3",
    "execa": "^5.1.1",
    "floggy": "^0.2.3",
    "fs-jetpack": "^4.1.1",
    "lodash": "^4.17.21",
    "playwright": "^1.15.1",
    "tslib": "^2.3.1"
  },
  "devDependencies": {
    "@homer0/prettier-plugin-jsdoc": "4.0.5",
    "@prisma-labs/prettier-config": "0.1.0",
    "@types/jest": "27.0.1",
    "@types/lodash": "^4.14.173",
    "@types/node": "16.9.1",
    "@types/ts-nameof": "4.2.1",
    "@typescript-eslint/eslint-plugin": "4.31.0",
    "@typescript-eslint/parser": "4.31.0",
    "dripip": "0.10.0",
    "eslint": "7.32.0",
    "eslint-config-prettier": "8.3.0",
    "eslint-plugin-only-warn": "1.0.3",
    "format-imports": "2.4.1",
    "jest": "27.1.1",
    "jest-watch-select-projects": "2.0.0",
    "jest-watch-suspend": "1.1.2",
    "jest-watch-typeahead": "0.6.4",
    "markdown-toc": "^1.2.0",
    "prettier": "2.4.0",
    "ts-jest": "27.0.5",
    "ts-nameof": "5.0.0",
    "ts-node": "10.2.1",
    "ts-patch": "^1.4.4",
    "typescript": "4.4.3",
    "typescript-snapshots-plugin": "1.7.0",
    "typescript-transform-paths": "3.3.1"
  },
  "importSorter": {
    "emptyLinesBetweenGroups": 0,
    "wrappingStyle": "prettier"
  }
}
