-
Notifications
You must be signed in to change notification settings - Fork 240
Expand file tree
/
Copy pathpackage.json
More file actions
94 lines (94 loc) · 2.03 KB
/
package.json
File metadata and controls
94 lines (94 loc) · 2.03 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
{
"name": "@shopify/create-app",
"version": "3.92.0",
"packageManager": "pnpm@10.11.1",
"private": false,
"description": "A CLI tool to create a new Shopify app.",
"keywords": [
"shopify",
"shopify-cli",
"shopify-partners",
"shopify-apps"
],
"bugs": {
"url": "https://community.shopify.dev/c/shopify-cli-libraries/14"
},
"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"
],
"scripts": {
"build": "nx build",
"bundle": "nx bundle",
"clean": "nx clean",
"lint": "nx lint",
"lint:fix": "nx lint:fix",
"prepack": "NODE_ENV=production node ../../bin/update-bugsnag create-app && pnpm oclif manifest && cp ../../README.md README.md",
"vitest": "vitest",
"type-check": "nx type-check"
},
"eslintConfig": {
"extends": [
"../../.eslintrc.cjs"
]
},
"dependencies": {
"esbuild": "0.27.4"
},
"devDependencies": {
"@shopify/cli-kit": "3.92.0",
"@shopify/app": "3.92.0",
"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"
}
}
}