{
  "name": "epic-cli",
  "description": "Commands useful for everyday web development with node.",
  "version": "3.7.0",
  "repository": "github:tobua/epic-cli",
  "license": "MIT",
  "author": "Matthias Giger",
  "scripts": {
    "check": "biome check --write .",
    "clean": "git clean -fdx test/fixture",
    "types": "tsc"
  },
  "dependencies": {
    "@npmcli/map-workspaces": "^4.0.2",
    "fast-glob": "^3.3.3",
    "pakag": "^3.1.4",
    "prompts": "^2.4.2",
    "semver": "^7.7.1",
    "tree-node-cli": "^1.6.0",
    "validate-npm-package-name": "^6.0.0"
  },
  "devDependencies": {
    "@biomejs/biome": "^1.9.4",
    "@types/bun": "^1.2.4",
    "@types/npmcli__map-workspaces": "^3.0.4",
    "@types/prompts": "^2.4.9",
    "@types/semver": "^7.5.8",
    "@types/validate-npm-package-name": "^4.0.2",
    "typescript": "^5.8.2",
    "zero-configuration": "^0.18.1"
  },
  "trustedDependencies": [
    "zero-configuration"
  ],
  "type": "module",
  "bin": {
    "commit": "./cli/commit.ts",
    "epic-cli": "./cli/standalone.ts",
    "files": "./cli/files.ts",
    "folders": "./cli/folders.ts",
    "format": "./cli/format.ts",
    "global": "./cli/global.ts",
    "init": "./cli/init.ts",
    "ports": "./cli/ports.ts",
    "refresh": "./cli/refresh.ts",
    "run": "./cli/run.ts",
    "secret": "./cli/secret.ts",
    "types": "./cli/types.ts",
    "update": "./cli/update.ts",
    "workspaces": "./cli/workspaces.ts"
  },
  "files": [
    "cli",
    "*.ts"
  ],
  "keywords": [
    "cli",
    "everyday",
    "bun"
  ],
  "publishConfig": {
    "provenance": true
  },
  "configuration": {
    "vscode": "biome",
    "gitignore": "recommended",
    "typescript": {
      "extends": "plugin",
      "compilerOptions": {
        "jsx": "react-jsx"
      },
      "include": [
        "cli/*"
      ]
    },
    "biome": {
      "extends": "recommended",
      "linter": {
        "rules": {
          "suspicious": {
            "noConsole": "off",
            "noConsoleLog": "off"
          },
          "performance": {
            "useTopLevelRegex": "off"
          },
          "correctness": {
            "noNodejsModules": "off"
          }
        }
      }
    }
  }
}
