{
    "name": "@theorchard/frontend-cli",
    "version": "4.3.1",
    "description": "The Orchard front-end application CLI",
    "author": "The Orchard",
    "homepage": "https://github.com/theorchard/orchard-suite#readme",
    "license": "MIT",
    "engines": {
        "node": ">=20"
    },
    "type": "module",
    "main": "dist/index.js",
    "types": "dist/index.d.ts",
    "bin": {
        "frontend": "./index.cjs"
    },
    "directories": {
        "lib": "dist"
    },
    "files": [
        "dist",
        "CHANGELOG.md"
    ],
    "prettier": "@theorchard/prettier-config",
    "eslintConfig": {
        "extends": "@theorchard/eslint-config-ts-prettier"
    },
    "publishConfig": {
        "registry": "https://npm.pkg.github.com"
    },
    "repository": {
        "type": "git",
        "url": "git+https://github.com/theorchard/orchard-suite.git"
    },
    "scripts": {
        "build:esm": "tsc --build ./tsconfig.esm.json",
        "build": "pnpm run build:esm",
        "clean": "rm -rf dist && rm -rf .cache",
        "format": "prettier --write .",
        "format:check": "prettier --check .",
        "lint": "eslint --ext .js,.ts,.tsx,.jsx src",
        "test:unit": "vitest",
        "test": "pnpm lint && pnpm test:unit"
    },
    "dependencies": {
        "@theorchard/frontend-cli-core": "workspace:*",
        "@theorchard/frontend-cli-i18n": "workspace:*",
        "chalk": "^4.1.0",
        "commander": "^11.0.0",
        "dotenv": "^16.3.1",
        "latest-version": "^9.0.0",
        "lodash-es": "^4.18.1",
        "semver": "^7.5.3"
    },
    "devDependencies": {
        "@theorchard/frontend-cli-vite": "workspace:*",
        "@types/lodash-es": "^4.17.12",
        "@types/semver": "^7.5.0"
    },
    "peerDependencies": {
        "typescript": ">=5.4.0"
    }
}
