{
  "name": "@jetstart/cli",
  "version": "2.3.4",
  "description": "Command-line interface for JetStart",
  "main": "dist/index.js",
  "types": "dist/index.d.ts",
  "bin": {
    "jetstart": "./bin/jetstart.js"
  },
  "scripts": {
    "build:java": "node scripts/build-java.js",
    "prebuild": "npm run build:java",
    "build": "tsc",
    "dev": "tsc --watch",
    "clean": "rm -rf dist maven-repo",
    "test": "jest",
    "test:watch": "jest --watch",
    "test:coverage": "jest --coverage",
    "typecheck": "tsc --noEmit",
    "prepublishOnly": "npm run build"
  },
  "keywords": [
    "jetstart",
    "cli",
    "android",
    "kotlin",
    "jetpack-compose"
  ],
  "files": [
    "bin",
    "dist",
    "maven-repo",
    "scripts",
    "template"
  ],
  "author": "Phantom",
  "license": "MIT",
  "repository": {
    "type": "git",
    "url": "https://github.com/dev-phantom/jetstart.git",
    "directory": "packages/cli"
  },
  "bugs": {
    "url": "https://github.com/dev-phantom/jetstart/issues"
  },
  "homepage": "https://github.com/dev-phantom/jetstart#readme",
  "dependencies": {
    "@jetstart/core": "^2.3.4",
    "@jetstart/shared": "^2.3.4",
    "axios": "^1.6.2",
    "chalk": "^4.1.2",
    "commander": "^11.1.0",
    "dotenv": "^16.3.1",
    "extract-zip": "^2.0.1",
    "fs-extra": "11.3.4",
    "inquirer": "^8.2.6",
    "ora": "^5.4.1",
    "qrcode-terminal": "^0.12.0",
    "which": "^4.0.0",
    "ws": "^8.14.2"
  },
  "devDependencies": {
    "@types/extract-zip": "^2.0.1",
    "@types/fs-extra": "^11.0.4",
    "@types/inquirer": "^8.2.10",
    "@types/jest": "^29.5.0",
    "@types/node": "^20.10.0",
    "@types/qrcode-terminal": "0.12.2",
    "@types/which": "^3.0.3",
    "@types/ws": "^8.5.10",
    "jest": "^29.5.0",
    "ts-jest": "^29.1.0",
    "typescript": "^5.3.0"
  },
  "engines": {
    "node": ">=18.0.0",
    "npm": ">=9.0.0"
  },
  "jest": {
    "preset": "ts-jest",
    "testEnvironment": "node",
    "roots": [
      "<rootDir>/tests"
    ],
    "testMatch": [
      "**/*.test.ts"
    ],
    "collectCoverageFrom": [
      "src/**/*.ts",
      "!src/**/*.d.ts",
      "!src/**/index.ts"
    ]
  }
}
