-
Notifications
You must be signed in to change notification settings - Fork 249
Expand file tree
/
Copy pathpackage.json
More file actions
97 lines (97 loc) · 2.42 KB
/
package.json
File metadata and controls
97 lines (97 loc) · 2.42 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
95
96
97
{
"name": "@shopify/app",
"version": "3.93.0",
"packageManager": "[email protected]",
"description": "Utilities for loading, building, and publishing apps.",
"homepage": "https://github.com/shopify/cli#readme",
"private": true,
"bugs": {
"url": "https://community.shopify.dev/c/shopify-cli-libraries/14"
},
"repository": {
"type": "git",
"url": "https://github.com/Shopify/cli.git",
"directory": "packages/app"
},
"license": "MIT",
"type": "module",
"exports": {
".": {
"import": "./dist/cli/index.js",
"types": "./dist/cli/index.d.ts"
},
"./assets/*": "./assets/*",
"./node/plugins/*": {
"import": "./dist/cli/public/plugins/*.js",
"require": "./dist/cli/public/plugins/*.d.ts"
}
},
"files": [
"/dist",
"/assets",
"/templates",
"/oclif.manifest.json"
],
"scripts": {
"build": "nx build",
"clean": "nx clean",
"lint": "nx lint",
"lint:fix": "nx lint:fix",
"prepack": "NODE_ENV=production pnpm nx build && cp ../../README.md README.md",
"vitest": "vitest",
"type-check": "nx type-check"
},
"eslintConfig": {
"extends": [
"../../.eslintrc.cjs"
]
},
"dependencies": {
"@graphql-typed-document-node/core": "3.2.0",
"@luckycatfactory/esbuild-graphql-loader": "3.8.1",
"@oclif/core": "4.5.3",
"@shopify/cli-kit": "3.93.0",
"@shopify/plugin-cloudflare": "3.93.0",
"@shopify/polaris": "12.27.0",
"@shopify/polaris-icons": "8.11.1",
"@shopify/theme": "3.93.0",
"@shopify/theme-check-node": "3.24.0",
"@shopify/toml-patch": "0.3.0",
"chokidar": "3.6.0",
"diff": "5.2.2",
"esbuild": "0.28.0",
"graphql-request": "6.1.0",
"h3": "1.15.9",
"http-proxy-node16": "1.0.6",
"ignore": "6.0.2",
"json-schema-to-typescript": "15.0.4",
"prettier": "3.8.1",
"proper-lockfile": "4.1.2",
"react": "19.2.4",
"react-dom": "19.2.4",
"which": "4.0.0",
"ws": "8.18.0"
},
"devDependencies": {
"@types/diff": "^5.0.3",
"@types/proper-lockfile": "4.1.4",
"@types/react": "^19.0.0",
"@types/react-dom": "^19.0.0",
"@types/which": "3.0.4",
"@types/ws": "^8.5.13",
"@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
}