{
  "name": "@flex-development/mkbuild",
  "description": "An esbuild based file-to-file transformer and bundler",
  "version": "1.0.0-alpha.23",
  "keywords": [
    "bundle",
    "bundler",
    "dts",
    "esbuild",
    "file-to-file",
    "jsx",
    "react",
    "transpile",
    "transpiler",
    "typescript"
  ],
  "license": "BSD-3-Clause",
  "homepage": "https://github.com/flex-development/mkbuild",
  "repository": "https://github.com/flex-development/mkbuild.git",
  "bugs": "https://github.com/flex-development/mkbuild/issues",
  "author": {
    "name": "Lexus Drumgold",
    "url": "https://github.com/unicornware"
  },
  "publishConfig": {
    "access": "public",
    "directory": "./"
  },
  "type": "module",
  "files": [
    "CHANGELOG.md",
    "dist"
  ],
  "bin": "./dist/cli.mjs",
  "exports": {
    ".": "./dist/index.mjs",
    "./package.json": "./package.json"
  },
  "imports": {
    "#pkg": "./package.json",
    "#src": "./src/index.ts",
    "#src/*": "./src/*.ts"
  },
  "module": "./dist/index.mjs",
  "types": "./dist/index.d.mts",
  "scripts": {
    "build": "node --enable-source-maps --loader=./loader.mjs ./src/cli",
    "changelog": "yarn grease changelog",
    "check:ci": "yarn dedupe --check && yarn check:format && yarn check:lint && yarn check:spelling && yarn typecheck && yarn test:cov && yarn pack && yarn check:types:build && attw package.tgz && yarn clean:pack && yarn pkg-size",
    "check:format": "dprint check",
    "check:lint": "eslint --exit-on-fatal-error --max-warnings 0 .",
    "check:spelling": "cspell lint --color --no-progress --relative $@ \"**\"",
    "check:types": "tsc -p tsconfig.typecheck.json",
    "check:types:attw": "yarn pack && attw package.tgz && yarn clean:pack",
    "check:types:build": "bash ./scripts/typecheck-build.sh",
    "check:upgrades": "yarn upgrade-interactive",
    "clean:build": "trash ./{dist,*.tgz}",
    "clean:coverage": "trash ./coverage",
    "clean:modules": "trash ./.yarn/{cache,*.gz} ./node_modules",
    "clean:pack": "trash ./*.tgz",
    "clean:test": "yarn clean:coverage && trash ./__tests__/report.json",
    "codecov": "yarn test:cov && yarn test:cov:upload",
    "codecov:validate": "cat .codecov.yml | curl --data-binary @- https://codecov.io/validate",
    "commitlint": "cross-env TS_NODE_PROJECT=tsconfig.cjs.json commitlint -V",
    "fix:cg": "yarn fix:format && yarn fix:lint",
    "fix:dedupe": "yarn dedupe --strategy=highest",
    "fix:format": "dprint fmt",
    "fix:lint": "yarn check:lint --cache --fix",
    "grease": "node --enable-source-maps --loader=./loader.mjs ./grease",
    "pkg-size": "pkg-size --sizes size --sort-by name",
    "_postinstall": "[ -f ./node_modules/.bin/husky ] && chmod +x .husky/* && husky install || exit 0",
    "postpack": "toggle-scripts +postinstall",
    "postpublish": "toggle-scripts +prepack",
    "prepack": "toggle-scripts -postinstall && yarn build",
    "prepublishOnly": "toggle-scripts -prepack",
    "recommended-bump": "conventional-recommended-bump --preset=conventionalcommits --tag-prefix=$(jq .tagPrefix package.json -r) --verbose",
    "release": "bash ./scripts/release.sh",
    "test": "vitest run",
    "test:cov": "yarn clean:coverage; yarn test --coverage",
    "test:cov:serve": "vite preview --outDir ./coverage",
    "test:cov:upload": "./codecov -t $CODECOV_TOKEN -f ./coverage/lcov.info",
    "test:watch": "vitest",
    "typecheck": "vitest typecheck --run",
    "typecheck:watch": "vitest typecheck"
  },
  "dependencies": {
    "@flex-development/decorator-regex": "2.0.0",
    "@flex-development/errnode": "2.0.0",
    "@flex-development/ext-regex": "2.0.0",
    "@flex-development/mlly": "1.0.0-alpha.18",
    "@flex-development/pathe": "2.0.0",
    "@flex-development/pkg-types": "3.0.0",
    "@flex-development/toggle-pkg-type": "2.0.1",
    "@flex-development/tsconfig-utils": "2.0.2",
    "@flex-development/tutils": "6.0.0-alpha.22",
    "consola": "3.2.3",
    "cosmiconfig": "8.2.0",
    "exit-hook": "3.2.0",
    "fast-glob": "3.3.1",
    "pretty-bytes": "6.1.1",
    "tinyrainbow": "1.1.1"
  },
  "devDependencies": {
    "@arethetypeswrong/cli": "0.10.1",
    "@commitlint/cli": "17.7.1",
    "@commitlint/types": "17.4.4",
    "@faker-js/faker": "8.0.2",
    "@flex-development/commitlint-config": "1.0.1",
    "@flex-development/esm-types": "2.0.0",
    "@flex-development/nest-commander": "1.0.0-alpha.1",
    "@nestjs/common": "10.2.4",
    "@nestjs/core": "10.2.4",
    "@nestjs/testing": "10.2.4",
    "@swc/core": "1.3.83",
    "@types/chai": "4.3.5",
    "@types/chai-fs": "2.0.2",
    "@types/chai-string": "1.4.2",
    "@types/dateformat": "5.0.0",
    "@types/eslint": "8.44.2",
    "@types/is-ci": "3.0.0",
    "@types/node": "20.6.0",
    "@types/node-notifier": "8.0.2",
    "@types/semver": "7.5.0",
    "@typescript-eslint/eslint-plugin": "6.6.0",
    "@typescript-eslint/parser": "6.6.0",
    "@vates/toggle-scripts": "1.0.0",
    "@vitest/coverage-v8": "0.34.4",
    "@vitest/expect": "0.34.4",
    "chai": "5.0.0-alpha.1",
    "chai-each": "0.0.1",
    "chai-fs": "2.0.0",
    "chai-quantifiers": "1.0.17",
    "chai-string": "1.5.0",
    "class-validator": "0.14.0",
    "conventional-recommended-bump": "9.0.0",
    "cross-env": "7.0.3",
    "cspell": "7.0.1",
    "dateformat": "5.0.3",
    "dprint": "0.40.2",
    "editorconfig": "2.0.0",
    "esbuild": "0.19.2",
    "eslint": "8.49.0",
    "eslint-import-resolver-typescript": "3.6.0",
    "eslint-plugin-chai-expect": "3.0.0",
    "eslint-plugin-import": "2.28.1",
    "eslint-plugin-jest-formatting": "3.1.0",
    "eslint-plugin-jsdoc": "44.1.0",
    "eslint-plugin-jsonc": "2.9.0",
    "eslint-plugin-markdown": "3.0.1",
    "eslint-plugin-markdownlint": "0.5.0",
    "eslint-plugin-node": "11.1.0",
    "eslint-plugin-promise": "6.1.1",
    "eslint-plugin-unicorn": "48.0.1",
    "eslint-plugin-yml": "1.8.0",
    "growl": "1.10.5",
    "husky": "8.0.3",
    "is-ci": "3.0.1",
    "jsonc-eslint-parser": "2.3.0",
    "lint-staged": "14.0.1",
    "lodash-es": "4.17.21",
    "memfs": "4.2.1",
    "node-emoji": "2.1.0",
    "node-notifier": "10.0.1",
    "pkg-size": "2.4.0",
    "prettier": "3.0.3",
    "pretty-format": "29.6.3",
    "reflect-metadata": "0.1.13",
    "rxjs": "7.8.1",
    "semver": "7.5.4",
    "sh-syntax": "0.4.1",
    "trash-cli": "5.0.0",
    "ts-dedent": "2.2.0",
    "typescript": "5.2.2",
    "version-bump-prompt": "6.1.0",
    "vite": "5.0.0-beta.1",
    "vite-tsconfig-paths": "4.2.0",
    "vitest": "0.34.4",
    "yaml-eslint-parser": "1.2.2"
  },
  "peerDependencies": {
    "@types/node": ">=16.18.23",
    "esbuild": ">=0.19.0",
    "typescript": ">=5.0.4"
  },
  "peerDependenciesMeta": {
    "@types/node": {
      "optional": true
    },
    "typescript": {
      "optional": true
    }
  },
  "resolutions": {
    "@flex-development/tutils": "6.0.0-alpha.22",
    "chai": "5.0.0-alpha.1",
    "esbuild": "0.19.2"
  },
  "engines": {
    "node": ">=16.20.0 <20.6.0 || >20.6.0",
    "yarn": "4.0.0-rc.50"
  },
  "packageManager": "yarn@4.0.0-rc.50",
  "readme": "README.md",
  "sideEffects": false,
  "tagPrefix": ""
}