{
  "name": "adastra-cli",
  "version": "0.4.0",
  "author": "Blanklob",
  "license": "MIT",
  "type": "module",
  "main": "./dist/index.js",
  "module": "./dist/index.js",
  "types": "./dist/index.d.ts",
  "bin": {
    "adastra": "./bin/run.js"
  },
  "files": [
    "/bin",
    "/dist",
    "/npm-shrinkwrap.json",
    "/oclif.manifest.json"
  ],
  "dependencies": {
    "@oclif/core": "^2",
    "@oclif/plugin-help": "^5",
    "@shopify/cli-kit": "^3.43.0",
    "chalk": "^5.0.1",
    "execa": "^6.1.0",
    "open": "^8.4.0",
    "ora": "^6.1.0",
    "vite": "^4.0.4",
    "adastra-cli-kit": "0.1.3",
    "adastra-branding": "0.1.2"
  },
  "devDependencies": {
    "eslint": "^7.32.0",
    "oclif": "^3",
    "adastra-tsconfig": "0.1.0",
    "eslint-config-adastra": "0.1.2"
  },
  "os": [
    "darwin",
    "linux",
    "win32"
  ],
  "engine-strict": true,
  "engines": {
    "node": ">=14.17.0"
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/blanklob/adastra.git",
    "directory": "packages/adastra-cli"
  },
  "keywords": [
    "adastra",
    "cli"
  ],
  "oclif": {
    "bin": "adastra",
    "dirname": "adastra",
    "commands": "./dist/commands",
    "plugins": [
      "@oclif/plugin-help"
    ]
  },
  "scripts": {
    "start": "./bin/run.js",
    "dev": "npm run build -- --watch",
    "build": "tsup src/**/**/**/*.ts --dts --format esm --clean",
    "watch": "tsup src/**/**/**/*.ts --format esm --dts --watch",
    "lint": "eslint .",
    "lint:fix": "eslint . --fix",
    "typecheck": "tsc --noEmit",
    "test": "vitest run",
    "test:watch": "vitest",
    "coverage": "vitest run --coverage"
  }
}