{
  "name": "@flex-development/kronk",
  "description": "a command line builder",
  "version": "1.0.0-alpha.1",
  "keywords": [
    "argv",
    "cli",
    "cmd",
    "command",
    "commander",
    "program"
  ],
  "license": "BSD-3-Clause",
  "homepage": "https://github.com/flex-development/kronk",
  "repository": "https://github.com/flex-development/kronk.git",
  "bugs": "https://github.com/flex-development/kronk/issues",
  "author": {
    "name": "Lexus Drumgold",
    "url": "https://github.com/unicornware"
  },
  "publishConfig": {
    "access": "public",
    "diff-dst-prefix": "kronk",
    "diff-src-prefix": "kronk",
    "directory": "./",
    "executableFiles": [],
    "node-options": null,
    "pack-destination": ".",
    "parseable": true,
    "prefer-dedupe": true,
    "provenance": true,
    "tag-version-prefix": ""
  },
  "type": "module",
  "files": [
    "CHANGELOG.md",
    "LICENSE.md",
    "README.md",
    "dist"
  ],
  "exports": {
    ".": {
      "kronk": "./src/index.mts",
      "default": "./dist/index.mjs"
    },
    "./errors": {
      "kronk": "./src/errors/index.mts",
      "default": "./dist/errors/index.mjs"
    },
    "./events": {
      "kronk": "./src/events/index.mts",
      "default": "./dist/events/index.mjs"
    },
    "./package.json": "./package.json",
    "./parsers": {
      "kronk": "./src/parsers/index.mts",
      "default": "./dist/parsers/index.mjs"
    },
    "./utils": {
      "kronk": "./src/utils/index.mts",
      "default": "./dist/utils/index.mjs"
    }
  },
  "imports": {
    "#constructs/*": {
      "kronk": "./src/constructs/*.mts",
      "default": "./dist/constructs/*.mjs"
    },
    "#enums/*": {
      "kronk": "./src/enums/*.mts",
      "default": "./dist/enums/*.mjs"
    },
    "#errors/*": {
      "kronk": "./src/errors/*.mts",
      "default": "./dist/errors/*.mjs"
    },
    "#events/*": {
      "kronk": "./src/events/*.mts",
      "default": "./dist/events/*.mjs"
    },
    "#fixtures/*": "./__fixtures__/*.mts",
    "#interfaces/*": {
      "kronk": "./src/interfaces/*.mts",
      "default": "./dist/interfaces/*.d.mts"
    },
    "#internal/*": {
      "kronk": "./src/internal/*.mts",
      "default": "./dist/internal/*.mjs"
    },
    "#lib/*": {
      "kronk": "./src/lib/*.mts",
      "default": "./dist/lib/*.mjs"
    },
    "#parsers/*": {
      "kronk": "./src/parsers/*.mts",
      "default": "./dist/parsers/*.mjs"
    },
    "#program": {
      "kronk": "./src/program.mts",
      "default": "./dist/program.mjs"
    },
    "#tests/*": "./__tests__/*.mts",
    "#types/*": {
      "kronk": "./src/types/*.mts",
      "default": "./dist/types/*.d.mts"
    },
    "#utils/*": {
      "kronk": "./src/utils/*.mts",
      "default": "./dist/utils/*.mjs"
    }
  },
  "module": "./dist/index.mjs",
  "types": "./dist/index.d.mts",
  "remarkConfig": {
    "plugins": [
      "@flex-development/remark-preset"
    ]
  },
  "scripts": {
    "build": "yarn clean:build && tsc -p tsconfig.build.json --noEmit false && trash ./dist/{interfaces,types}/*.mjs || exit 0 && trash ./dist/{constructs,enums,internal}/*.d.mts || exit 0",
    "check:ci": "yarn dedupe --check && yarn check:format && yarn check:lint && yarn check:spelling && yarn typecheck && yarn check:types && yarn test:cov && yarn pack && yarn check:types:build && attw package.tgz && yarn clean:pack",
    "check:format": "dprint check --incremental=false",
    "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": "tsc -p tsconfig.build.json",
    "check:upgrades": "yarn upgrade-interactive",
    "clean:build": "trash \"./{dist,*.tgz}\" || exit 0",
    "clean:modules": "trash ./.yarn/{cache,*.gz} ./node_modules",
    "clean:pack": "trash \"./*.tgz\"",
    "clean:test": "trash ./coverage && trash __tests__/reports",
    "codecov": "yarn test:cov && yarn test:cov:upload",
    "codecov:validate": "cat .codecov.yml | curl --data-binary @- https://codecov.io/validate",
    "commitlint": "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",
    "_postinstall": "[ -f ./.git ] && [ -f ./node_modules/.bin/husky ] && chmod +x .husky/_/* && husky || exit 0",
    "postpack": "toggle-scripts +postinstall",
    "postpublish": "toggle-scripts +prepack",
    "prepack": "toggle-scripts -postinstall && yarn build",
    "prepublishOnly": "toggle-scripts -prepack",
    "release": "bash ./scripts/release.sh",
    "remark": "remark .",
    "test": "yarn clean:build; cross-env NODE_OPTIONS=\"--conditions kronk\" vitest run",
    "test:cov": "yarn test --coverage",
    "test:cov:reports": "yarn test:cov --merge-reports --mode=reports",
    "test:cov:ui": "yarn test:ui --coverage",
    "test:cov:upload": "./codecov -t $CODECOV_TOKEN -f ./coverage/lcov.info",
    "test:reports": "yarn test --merge-reports --mode=reports",
    "test:ui": "cross-env VITEST_UI=1 NODE_OPTIONS=\"--conditions kronk\" vitest --ui",
    "typecheck": "yarn test --typecheck --mode=typecheck",
    "typecheck:ui": "yarn test:ui --typecheck --mode=typecheck"
  },
  "dependencies": {
    "@flex-development/colors": "2.0.0",
    "@flex-development/fsm-tokenizer": "1.0.0-alpha.1",
    "@flex-development/string-wrap": "2.1.2",
    "@flex-development/strip-ansi": "1.0.0",
    "@flex-development/tutils": "6.0.0-alpha.25",
    "@types/semver": "7.7.1",
    "devlop": "1.1.0",
    "eventemitter2": "6.4.9",
    "micromark-util-character": "2.1.1",
    "plur": "6.0.0",
    "string-width": "8.1.0"
  },
  "devDependencies": {
    "@arethetypeswrong/cli": "0.18.2",
    "@commitlint/cli": "20.3.1",
    "@commitlint/types": "20.3.1",
    "@faker-js/faker": "10.2.0",
    "@flex-development/commitlint-config": "1.0.1",
    "@flex-development/eslint-config": "1.1.1",
    "@flex-development/grease": "3.0.0-alpha.9",
    "@flex-development/mlly": "1.0.0-alpha.20",
    "@flex-development/pathe": "4.0.2",
    "@flex-development/pkg-types": "4.1.0",
    "@flex-development/remark-preset": "1.0.0",
    "@tsconfig/strictest": "2.0.8",
    "@types/chai": "5.2.3",
    "@types/chai-string": "1.4.5",
    "@types/concat-stream": "2.0.3",
    "@types/dateformat": "5.0.3",
    "@types/is-ci": "3.0.4",
    "@types/node": "25.0.3",
    "@types/node-notifier": "8.0.5",
    "@vates/toggle-scripts": "1.0.0",
    "@vitest/coverage-v8": "4.0.16",
    "@vitest/ui": "4.0.16",
    "chai": "6.2.2",
    "chai-string": "1.6.0",
    "commander": "14.0.2",
    "concat-stream": "2.0.0",
    "cross-env": "10.1.0",
    "cspell": "9.4.0",
    "dateformat": "5.0.3",
    "dprint": "0.51.1",
    "editorconfig": "3.0.1",
    "eslint": "9.39.2",
    "growl": "1.10.5",
    "husky": "9.1.7",
    "is-ci": "4.1.0",
    "node-notifier": "10.0.1",
    "remark": "15.0.1",
    "remark-cli": "12.0.1",
    "semver": "7.7.3",
    "sh-syntax": "0.5.8",
    "trash-cli": "7.0.0",
    "ts-dedent": "2.2.0",
    "typescript": "5.9.3",
    "unified": "11.0.5",
    "vfile": "6.0.3",
    "vitest": "4.0.16"
  },
  "packageManager": "yarn@4.12.0",
  "sideEffects": false
}