{
  "name": "@alloy-js/cli",
  "version": "0.24.0",
  "type": "module",
  "description": "Alloy cli for building alloy components",
  "homepage": "https://github.com/alloy-framework/alloy",
  "license": "MIT",
  "author": "Microsoft",
  "files": [
    "dist",
    "cmd",
    "agents",
    "docs"
  ],
  "bin": {
    "alloy": "./cmd/alloy.js"
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/alloy-framework/alloy.git"
  },
  "engines": {
    "node": ">=18.0.0"
  },
  "dependencies": {
    "@babel/preset-typescript": "7.29.7",
    "@babel/core": "7.29.7",
    "picocolors": "^1.1.1",
    "pathe": "^2.0.3",
    "@alloy-js/babel-preset": "~0.3.0"
  },
  "devDependencies": {
    "@types/babel__core": "^7.20.5",
    "@types/node": "^25.9.2",
    "typescript": "^6.0.3",
    "vitest": "4.1.8"
  },
  "bugs": "https://github.com/alloy-framework/alloy/issues",
  "scripts": {
    "watch": "tsc -p ./tsconfig.build.json --watch",
    "build": "tsc -p ./tsconfig.build.json",
    "clean": "rimraf dist/ .temp/",
    "test": "vitest run",
    "test:watch": "vitest -w"
  }
}