{
  "name": "@kipper/cli",
  "description": "The Kipper Command Line Interface (CLI).",
  "version": "0.12.1",
  "author": "Luna-Klatzer @Luna-Klatzer",
  "bin": {
    "kipper": "./bin/run",
    "kip": "./bin/run"
  },
  "dependencies": {
    "@oclif/command": "1.8.36",
    "@oclif/config": "1.18.17",
    "@oclif/plugin-help": "3.3.1",
    "@oclif/parser": "3.8.17",
    "@oclif/errors": "1.3.6",
    "@oclif/plugin-warn-if-update-available": "2.0.37",
    "tslib": "~2.6.2",
    "tslog": "3.3.4",
    "ts-node": "10.9.2",
    "chalk": "4.1.2",
    "inquirer": "7.3.3",
    "@kipper/target-js": "~0.12.1",
    "@kipper/core": "~0.12.1",
    "@kipper/config": "~0.12.1",
    "@kipper/target-ts": "~0.12.1"
  },
  "devDependencies": {
    "@types/node": "20.16.5",
    "@types/sinon": "17.0.3",
    "@types/inquirer": "7.3.3",
    "@sinonjs/fake-timers": "11.2.2",
    "@oclif/test": "2.5.6",
    "json-parse-even-better-errors": "3.0.2",
    "ts-node": "10.9.2",
    "copyfiles": "2.4.1",
    "rimraf": "5.0.7",
    "os-tmpdir": "2.0.0",
    "pseudomap": "1.0.2",
    "typescript": "5.1.3",
    "@oclif/core": "1.26.2",
    "oclif": "3.4.6",
    "semver": "7.6.3",
    "prettier": "3.3.3"
  },
  "overrides": {
    "pnpm": {
      "@oclif/core": "$@oclif/core"
    }
  },
  "engines": {
    "node": "16.x || 18.x || 20.x || 22.x",
    "pnpm": "8"
  },
  "files": [
    "lib",
    "src",
    "bin",
    "npm-shrinkwrap.json",
    "oclif.manifest.json",
    "LICENSE"
  ],
  "homepage": "https://kipper-lang.org",
  "bugs": "https://github.com/Kipper-Lang/Kipper/issues",
  "repository": {
    "type": "git",
    "url": "https://github.com/Kipper-Lang/Kipper"
  },
  "keywords": [
    "kipper",
    "language",
    "compiler",
    "backend",
    "oclif",
    "cli"
  ],
  "license": "GPL-3.0-or-later",
  "main": "lib/index.js",
  "types": "lib/index.d.ts",
  "oclif": {
    "commands": "./lib/commands",
    "bin": "kipper",
    "plugins": [
      "@oclif/plugin-warn-if-update-available"
    ],
    "helpClass": "./lib/help",
    "repositoryPrefix": "https://github.com/Kipper-Lang/Kipper/blob/v<%- version %>/kipper/cli/<%- commandPath %>",
    "warn-if-update-available": {
      "timeoutInDays": 7,
      "message": "<%= config.name %> npm package update available from <%= chalk.greenBright(config.version) %> to <%= chalk.greenBright(latest) %>."
    }
  },
  "scripts": {
    "version": "oclif readme && git add README.md && pnpm version",
    "lint": "pnpm run tslint && pnpm run prettier",
    "lint:fix": "pnpm run tslint:fix && pnpm run prettier",
    "build": "tsc",
    "postbuild": "copyfiles ./src/templates/**/* ./lib/templates/ --flat --all",
    "tslint": "eslint ./src/ --ext .ts --config ./../../.eslintrc",
    "tslint:fix": "eslint ./src/ --ext .ts --config ./../../.eslintrc --fix",
    "start": "node ./bin/run",
    "start:analyse": "node ./bin/run analyse",
    "start:compile": "node ./bin/run compile",
    "start:help": "node ./bin/run help",
    "start:new": "node ./bin/run new",
    "start:run": "node ./bin/run run",
    "start:version": "node ./bin/run version"
  }
}