{
  "name": "@asushares/cli",
  "version": "3.1.1",
  "description": "ASU SHARES CLI aimed at supporting CQL (Clinical Quality Language) operations on FHIR servers.",
  "main": "index.js",
  "bin": {
    "asushares": "./build/bin/asushares.js"
  },
  "scripts": {
    "clean": "rm -rf ./build",
    "compile": "npx tsc && chmod +x ./build/bin/*",
    "copy-files": "mkdir -p build/assets && cp -R src/assets/ build/assets/",
    "build": "npm run clean && npm run compile && npm run copy-files",
    "package": "npm run build && npm pack",
    "test": "jest",
    "test-watch": "nodemon --watch '{src,test}/**' --ext 'ts,md,json' --exec 'npx jest'"
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/asushares/cli.git"
  },
  "keywords": [
    "Clinical",
    "Quality",
    "Language",
    "CQL",
    "CDS",
    "FHIR",
    "cql",
    "HAPI"
  ],
  "license": "Apache-2.0",
  "bugs": {
    "url": "https://github.com/asushares/cli/issues"
  },
  "homepage": "https://github.com/asushares/cli#README",
  "dependencies": {
    "@asushares/core": "^3.1.1",
    "axios": "^1.12.2",
    "commander": "^14.0.1",
    "csv-parser": "^3.2.0",
    "ts-progress": "^0.1.9"
  },
  "devDependencies": {
    "@types/fhir": "^0.0.41",
    "@types/jest": "^30.0.0",
    "@types/node": "^24.8.0",
    "nodemon": "^3.1.10",
    "ts-jest": "^29.4.5",
    "ts-node": "^10.9.2"
  }
}