{
  "name": "@qvac/cli",
  "version": "0.11.0",
  "description": "Command-line interface for the QVAC ecosystem",
  "author": "Tether",
  "license": "Apache-2.0",
  "type": "module",
  "main": "./dist/index.js",
  "exports": "./dist/index.js",
  "bin": {
    "qvac": "./dist/index.js"
  },
  "files": [
    "dist/**/*",
    "README.md",
    "docs/**/*.md",
    "LICENSE",
    "NOTICE"
  ],
  "engines": {
    "node": ">=18.0.0"
  },
  "keywords": [
    "tether",
    "cli",
    "qvac",
    "bare",
    "bundler"
  ],
  "bugs": "https://github.com/tetherto/qvac/issues",
  "repository": {
    "type": "git",
    "url": "git+https://github.com/tetherto/qvac.git",
    "directory": "packages/cli"
  },
  "homepage": "https://qvac.tether.io",
  "scripts": {
    "prepublishOnly": "node scripts/check-publish-ready.cjs",
    "build": "rm -rf dist && tsc",
    "build:watch": "tsc --watch",
    "format": "prettier --check .",
    "format:fix": "prettier --write .",
    "lint": "lunte",
    "lint:fix": "lunte --fix",
    "typecheck": "tsc -p tsconfig.test.json --noEmit",
    "typecheck:bench-serve-openai-providers": "tsc -p tsconfig.benchmark.json --noEmit",
    "test": "npx tsx --test test/*.test.ts",
    "test:unit": "npx tsx --test test/*.test.ts && npm run typecheck:bench-serve-openai-providers && npm run test:bench-serve-openai-providers",
    "test:bench-serve-openai-providers": "tsx --test benchmarks/serve-openai-providers/*.test.ts",
    "test:e2e": "npm run test:e2e:js",
    "test:e2e:js": "tsx --test 'test/e2e/*.test.ts' 'test/e2e/cli/*.test.ts' 'test/e2e/http/*.test.ts' && tsx --test --test-concurrency=1 'test/e2e/model/*.test.ts'",
    "test:e2e:js:coverage": "tsx --test --test-concurrency=1 --experimental-test-coverage --test-coverage-include='src/**' --test-coverage-exclude='**/test/**' 'test/e2e/**/*.test.ts'",
    "dev:link": "npm install ../sdk",
    "dev:unlink": "node scripts/dev-unlink.cjs",
    "sdk-source:workspace": "node scripts/preinstall-build-local-sdk.cjs && npm install ../sdk"
  },
  "dependencies": {
    "@fastify/autoload": "^6.0.0",
    "@fastify/cors": "^11.0.0",
    "@fastify/multipart": "^9.0.0",
    "@fastify/swagger": "^9.0.0",
    "@fastify/swagger-ui": "^5.0.0",
    "@qvac/sdk": "^0.17.0",
    "close-with-grace": "^2.1.0",
    "commander": "^14.0.3",
    "fastify": "^5.0.0",
    "fastify-plugin": "^5.0.0",
    "fastify-type-provider-zod": "^5.0.0",
    "js-yaml": "^4.1.0",
    "tsx": "^4.21.0",
    "zod": "^4.0.0"
  },
  "devDependencies": {
    "@types/js-yaml": "^4.0.9",
    "@types/node": "^25.3.3",
    "lunte": "^1.8.2",
    "openai": "^6.48.0",
    "prettier": "^3.9.4",
    "prettier-config-holepunch": "^2.0.0",
    "typescript": "^5.9.3"
  }
}
