@shopify/create-app
Version:
A CLI tool to create a new Shopify app.
92 lines • 1.9 kB
JSON
{
"name": "@shopify/create-app",
"version": "3.83.3",
"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.git",
"directory": "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": {
"esbuild": "0.25.5"
},
"devDependencies": {
"@shopify/cli-kit": "3.83.3",
"@shopify/app": "3.83.3",
"esbuild-plugin-copy": "^2.1.1",
"@vitest/coverage-istanbul": "^3.1.4"
},
"engines": {
"node": ">=20.10.0"
},
"os": [
"darwin",
"linux",
"win32"
],
"publishConfig": {
"@shopify:registry": "https://registry.npmjs.org",
"access": "public"
},
"engine-strict": true,
"oclif": {
"bin": "create-app",
"commands": {
"strategy": "explicit",
"target": "./dist/index.js",
"identifier": "COMMANDS"
},
"additionalHelpFlags": [
"-h"
],
"hooks": {
"prerun": "./dist/hooks/prerun.js",
"postrun": "./dist/hooks/postrun.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"
}
}