{
  "name": "@walkeros/cli",
  "version": "4.6.1",
  "description": "walkerOS CLI - Bundle and deploy walkerOS components",
  "license": "MIT",
  "type": "module",
  "main": "./dist/index.js",
  "types": "./dist/index.d.ts",
  "exports": {
    ".": {
      "types": "./dist/index.d.ts",
      "default": "./dist/index.js"
    },
    "./dev": {
      "types": "./dist/dev.d.ts",
      "default": "./dist/dev.js"
    },
    "./examples": {
      "types": "./dist/examples/index.d.ts",
      "default": "./dist/examples/index.js"
    },
    "./examples/*": "./examples/*",
    "./openapi/spec.json": "./openapi/spec.json"
  },
  "bin": {
    "walkeros": "./dist/cli.js"
  },
  "files": [
    "dist/**",
    "examples/**",
    "openapi/spec.json",
    "src/telemetry/flow.json",
    "README.md",
    "CHANGELOG.md"
  ],
  "scripts": {
    "build": "tsup",
    "dev": "tsx src/index.ts",
    "start": "node dist/index.js",
    "test": "jest --colors --testPathIgnorePatterns '__tests__/e2e/' '__tests__/integration/'",
    "test:debug": "jest --colors --detectOpenHandles --testPathIgnorePatterns '__tests__/e2e/' '__tests__/integration/'",
    "test:integration": "jest --colors --testPathPatterns='__tests__/integration/'",
    "test:e2e": "jest --colors --testPathPatterns='__tests__/e2e/'",
    "generate:types": "openapi-typescript ${OPENAPI_SPEC:-./openapi/spec.json} -o src/types/api.gen.d.ts && prettier --write src/types/api.gen.d.ts ./openapi/spec.json",
    "generate:types:local": "OPENAPI_SPEC=${WALKEROS_APP_URL:-http://localhost:3000}/api/openapi.json npm run generate:types",
    "typecheck": "tsc --noEmit",
    "lint": "eslint \"src/**/*.ts*\"",
    "clean": "rm -rf .turbo && rm -rf dist && rm -rf coverage && rm -rf .temp && rm -rf .tmp",
    "docker:build": "bash scripts/build-docker.sh",
    "docker:build:flow": "bash scripts/build-flow.sh",
    "docker:test": "bash scripts/test-docker.sh",
    "docker:publish": "bash scripts/publish-docker.sh"
  },
  "dependencies": {
    "@vercel/nft": "^1.10.2",
    "@walkeros/collector": "4.6.1",
    "@walkeros/core": "4.6.1",
    "@walkeros/server-core": "4.6.1",
    "@walkeros/server-destination-api": "4.6.1",
    "@walkeros/transformer-validate": "4.6.1",
    "ajv": "^8.17.1",
    "chalk": "^5.6.2",
    "ci-info": "^4.4.0",
    "commander": "^15.0.0",
    "cors": "^2.8.5",
    "esbuild": "^0.28.0",
    "express": "^5.2.1",
    "fs-extra": "^11.3.2",
    "jsdom": "^29.1.1",
    "open": "^11.0.0",
    "openapi-fetch": "^0.17.0",
    "p-limit": "^7.3.0",
    "pacote": "^21.0.4",
    "picomatch": "^4.0.4",
    "semver": "^7.7.4",
    "tar": "^7.4.0",
    "zod": "^4.0"
  },
  "devDependencies": {
    "@types/cors": "^2.8.17",
    "@types/express": "^5.0.6",
    "@types/fs-extra": "^11.0.4",
    "@types/jsdom": "^28.0.3",
    "@types/pacote": "^11.1.8",
    "@types/picomatch": "4.0.3",
    "@types/semver": "^7.7.1",
    "@walkeros/config": "4.6.1",
    "@walkeros/core": "4.6.1",
    "msw": "^2.12.10",
    "openapi-typescript": "^7.13.0",
    "tsx": "^4.21.0"
  },
  "repository": {
    "url": "git+https://github.com/elbwalker/walkerOS.git",
    "directory": "packages/cli"
  },
  "author": "elbwalker <hello@elbwalker.com>",
  "homepage": "https://github.com/elbwalker/walkerOS#readme",
  "keywords": [
    "walkerOS",
    "cli",
    "flow",
    "analytics",
    "event-tracking",
    "event-data",
    "data-collection",
    "tag-management",
    "first-party-data",
    "privacy",
    "privacy-first",
    "consent",
    "bundler",
    "mcp"
  ]
}
