{
  "name": "@shopify/create-app",
  "version": "3.58.2",
  "private": false,
  "description": "A CLI tool to create a new Shopify app.",
  "keywords": [
    "shopify",
    "shopify-cli",
    "shopify-partners",
    "shopify-apps"
  ],
  "bugs": {
    "url": "https://github.com/Shopify/cli/issues/new/choose"
  },
  "repository": {
    "type": "git",
    "url": "https://github.com/Shopify/cli/edit/main/packages/create-app"
  },
  "license": "MIT",
  "type": "module",
  "exports": {
    "./commands/*": {
      "import": "./dist/commands/*.js",
      "require": "./dist/commands/*.d.ts"
    },
    ".": {
      "import": "./dist/index.js",
      "types": "./dist/index.d.ts"
    }
  },
  "bin": {
    "create-app": "./bin/run.js"
  },
  "files": [
    "/bin/run.js",
    "/bin/run.cmd",
    "/dist",
    "/oclif.manifest.json"
  ],
  "eslintConfig": {
    "extends": [
      "../../.eslintrc.cjs"
    ]
  },
  "dependencies": {
    "@oclif/core": "3.19.6",
    "@shopify/cli-kit": "3.58.2"
  },
  "devDependencies": {
    "@types/node": "18.19.3",
    "vite": "^4.4.9",
    "vitest": "^0.34.3"
  },
  "engines": {
    "node": ">=18.12.0"
  },
  "os": [
    "darwin",
    "linux",
    "win32"
  ],
  "publishConfig": {
    "@shopify:registry": "https://registry.npmjs.org",
    "access": "public"
  },
  "engine-strict": true,
  "oclif": {
    "bin": "create-app",
    "commands": "dist/commands",
    "additionalHelpFlags": [
      "-h"
    ],
    "hooks": {
      "prerun": "./dist/hooks/prerun.js",
      "postrun": "./dist/hooks/postrun.js"
    }
  },
  "scripts": {
    "build": "nx build",
    "clean": "nx clean",
    "lint": "nx lint",
    "lint:fix": "nx lint:fix",
    "test": "nx run create-app:test",
    "test:watch": "nx test:watch",
    "type-check": "nx type-check"
  }
}