{
  "name": "bandersnatch",
  "version": "2.0.1",
  "description": "Simple TypeScript CLI / REPL framework",
  "keywords": [
    "cli",
    "args",
    "argv",
    "parser",
    "terminal",
    "console",
    "program",
    "command",
    "argument",
    "option"
  ],
  "repository": "github:hongaar/bandersnatch",
  "license": "MIT",
  "author": "Joram van den Boezem <joram@vandenboezem.nl>",
  "sideEffects": false,
  "type": "module",
  "exports": {
    "types": "./dist/types/index.d.ts",
    "import": "./dist/esm/index.js",
    "require": "./dist/cjs/index.cjs"
  },
  "main": "dist/cjs/index.cjs",
  "types": "dist/types/index.d.ts",
  "files": [
    "dist"
  ],
  "scripts": {
    "build": "yarn clean && yarn build:cjs && yarn build:esm",
    "build:cjs": "tsc --project tsconfig.build.json --module commonjs --outDir dist/cjs && yarn convert-extension cjs dist/cjs/ && rm dist/cjs/*.map",
    "build:esm": "tsc --project tsconfig.build.json --module es6 --outDir dist/esm",
    "clean": "rm -rf dist",
    "doctoc": "doctoc README.md",
    "format": "yarn format:code && yarn format:toc && yarn format:todos",
    "format:check": "prettier --check --ignore-unknown .",
    "format:code": "prettier --write --ignore-unknown .",
    "format:toc": "doctoc README.md",
    "format:todos": "leasot --exit-nicely --reporter markdown --ignore \"**/node_modules\" \"**/*.ts\" > TODO.md",
    "release": "semantic-release",
    "start": "node --loader ts-node/esm",
    "test": "yarn test:unit && yarn test:types && yarn test:smoke",
    "test:smoke": "./tests/smoke/run.sh",
    "test:types": "tsd",
    "test:unit": "jest",
    "watch:cjs": "yarn build:cjs --watch",
    "watch:esm": "yarn build:esm --watch"
  },
  "lint-staged": {
    "*": "prettier --write --ignore-unknown"
  },
  "dependencies": {
    "@types/yargs": "17.0.32",
    "enquirer": "^2.3.6",
    "string-argv": "^0.3.1",
    "typed-emitter": "^2.1.0",
    "yargs": "^17.5.1"
  },
  "devDependencies": {
    "@semantic-release/changelog": "6.0.3",
    "@semantic-release/git": "10.0.1",
    "@types/jest": "29.5.12",
    "@types/node": "20.12.7",
    "convert-extension": "0.3.0",
    "doctoc": "2.2.1",
    "husky": "9.0.11",
    "jest": "29.7.0",
    "leasot": "13.3.0",
    "lint-staged": "15.2.2",
    "mock-argv": "2.0.8",
    "prettier": "3.2.5",
    "semantic-release": "23.0.8",
    "semantic-release-yarn": "3.0.2",
    "ts-jest": "29.1.2",
    "ts-node": "10.9.2",
    "tsd": "0.31.0",
    "typescript": "5.4.5"
  },
  "packageManager": "yarn@3.5.0",
  "engines": {
    "node": ">=18"
  },
  "moker": {
    "plugins": [
      "typescript",
      "github-actions",
      "todos",
      "doctoc",
      "husky",
      "jest",
      "lint-staged",
      "prettier",
      "semantic-release",
      "dependabot",
      "devcontainer"
    ]
  },
  "tsd": {
    "directory": "tests/types"
  }
}