@shopify/cli
Version:
A CLI tool to build for the Shopify platform
155 lines • 3.97 kB
JSON
{
"name": "@shopify/cli",
"version": "4.1.0",
"private": false,
"description": "A CLI tool to build for the Shopify platform",
"keywords": [
"shopify",
"shopify-cli",
"shopify-partners"
],
"homepage": "https://github.com/shopify/cli#readme",
"bugs": {
"url": "https://community.shopify.dev/c/shopify-cli-libraries/14"
},
"repository": {
"type": "git",
"url": "https://github.com/Shopify/cli.git",
"directory": "packages/cli"
},
"license": "MIT",
"type": "module",
"exports": {
"./assets/*": "./assets/*",
".": {
"import": "./dist/index.js",
"types": "./dist/index.d.ts"
},
"./package.json": "./package.json"
},
"main": "src/index.js",
"module": "src/index.js",
"bin": {
"shopify": "./bin/run.js"
},
"files": [
"/assets",
"/bin/run.cmd",
"/bin/run.js",
"/dist",
"!/dist/**/*.map",
"/oclif.manifest.json"
],
"dependencies": {
"@ast-grep/napi": "0.33.0",
"esbuild": "0.28.0",
"global-agent": "3.0.0"
},
"devDependencies": {
"@oclif/core": "4.5.3",
"@oclif/plugin-commands": "4.1.33",
"@oclif/plugin-plugins": "5.4.47",
"@shopify/app": "4.1.0",
"@shopify/store": "4.1.0",
"@shopify/cli-kit": "4.1.0",
"@shopify/plugin-cloudflare": "4.1.0",
"@shopify/plugin-did-you-mean": "4.1.0",
"@shopify/theme": "4.1.0",
"@shopify/cli-hydrogen": "11.1.10",
"@types/global-agent": "3.0.0",
"@vitest/coverage-istanbul": "^3.1.4",
"esbuild-plugin-copy": "^2.1.1"
},
"engines": {
"node": ">=22.12.0"
},
"os": [
"darwin",
"linux",
"win32"
],
"publishConfig": {
"@shopify:registry": "https://registry.npmjs.org",
"access": "public"
},
"engine-strict": true,
"oclif": {
"bin": "shopify",
"commands": {
"strategy": "explicit",
"target": "./dist/index.js",
"identifier": "COMMANDS"
},
"scope": "shopify",
"topicSeparator": " ",
"topics": {
"hydrogen": {
"description": "Build Hydrogen storefronts."
},
"theme": {
"description": "Build Liquid themes."
},
"app": {
"description": "Build Shopify apps."
},
"store": {
"description": "Work directly with Shopify stores."
},
"app:config": {
"description": "Manage app configuration."
},
"app:env": {
"description": "Manage environment variables."
},
"app:function": {
"description": "Manage Shopify Functions."
},
"auth": {
"description": "Auth operations."
},
"config": {
"description": "CLI configuration options."
},
"config:autocorrect": {
"description": "Command autocorrection options. If enabled, Shopify CLI will automatically run a corrected version of your command if a correction is available. Off by default."
},
"kitchen-sink": {
"description": "View the available UI kit components.",
"hidden": true
},
"plugins": {
"hidden": true
}
},
"additionalHelpFlags": [
"-h"
],
"hooks": {
"init": [
"./dist/hooks/app-init.js",
"./dist/hooks/hydrogen-init.js"
],
"prerun": "./dist/hooks/prerun.js",
"postrun": "./dist/hooks/postrun.js",
"command_not_found": "./dist/hooks/did-you-mean.js",
"tunnel_start": "./dist/hooks/tunnel-start.js",
"tunnel_provider": "./dist/hooks/tunnel-provider.js",
"update": "./dist/hooks/plugin-plugins.js",
"sensitive_command_metadata": [
"./dist/hooks/sensitive-metadata.js"
],
"public_command_metadata": [
"./dist/hooks/public-metadata.js"
]
}
},
"scripts": {
"build": "nx build",
"bundle": "nx bundle",
"clean": "nx clean",
"lint": "nx lint",
"lint:fix": "nx lint:fix",
"vitest": "vitest",
"type-check": "nx type-check"
}
}