{
  "name": "@telorun/cli",
  "version": "0.82.0",
  "description": "Telo CLI - Command-line interface for the Telo runtime.",
  "keywords": [
    "telo",
    "cli",
    "runtime"
  ],
  "author": "Bartosz Pasiński <bartosz.pasinski@codenet.pl>",
  "license": "SEE LICENSE IN LICENSE",
  "repository": {
    "type": "git",
    "url": "git+https://github.com/telorun/telo.git",
    "directory": "cli/nodejs"
  },
  "homepage": "https://github.com/telorun/telo#readme",
  "bugs": {
    "url": "https://github.com/telorun/telo/issues"
  },
  "type": "module",
  "engines": {
    "node": ">=24"
  },
  "bin": {
    "telo": "./bin/telo.mjs"
  },
  "main": "./dist/cli.js",
  "exports": {
    ".": "./dist/cli.js"
  },
  "files": [
    "bin",
    "dist"
  ],
  "dependencies": {
    "@telorun/analyzer": "0.65.0",
    "@telorun/glob": "0.2.0",
    "@telorun/ide-support": "0.16.1",
    "@telorun/kernel": "0.82.0",
    "@telorun/sdk": "0.82.0",
    "@telorun/templating": "0.16.0",
    "dotenv": "^17.4.0",
    "packageurl-js": "^2.0.1",
    "semver": "^7.7.3",
    "tar-stream": "^3.1.7",
    "yaml": "^2.8.3",
    "yargs": "^17.7.2"
  },
  "devDependencies": {
    "@types/node": "^20.0.0",
    "@types/semver": "^7.7.1",
    "@types/tar-stream": "^3.1.3",
    "@types/yargs": "^17.0.33",
    "nock": "^14.0.15",
    "typescript": "^5.0.0",
    "vitest": "^2.1.8",
    "@telorun/debug-ui": "0.6.2"
  },
  "overrides": {
    "@telorun/analyzer": "$@telorun/analyzer",
    "@telorun/glob": "$@telorun/glob",
    "@telorun/ide-support": "$@telorun/ide-support",
    "@telorun/kernel": "$@telorun/kernel",
    "@telorun/sdk": "$@telorun/sdk",
    "@telorun/templating": "$@telorun/templating",
    "dotenv": "$dotenv",
    "packageurl-js": "$packageurl-js",
    "semver": "$semver",
    "tar-stream": "$tar-stream",
    "yaml": "$yaml",
    "yargs": "$yargs"
  },
  "scripts": {
    "build": "tsc",
    "dev": "tsc --watch",
    "test": "vitest run",
    "test:watch": "vitest"
  }
}