-
Notifications
You must be signed in to change notification settings - Fork 240
Expand file tree
/
Copy pathpackage.json
More file actions
68 lines (68 loc) · 1.53 KB
/
package.json
File metadata and controls
68 lines (68 loc) · 1.53 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
{
"name": "@shopify/plugin-cloudflare",
"version": "3.92.0",
"packageManager": "pnpm@10.11.1",
"description": "Enables the creation of Cloudflare tunnels from `shopify app dev`, allowing previews from any device",
"keywords": [
"shopify",
"shopify-cli",
"shopify-partners"
],
"bugs": {
"url": "https://community.shopify.dev/c/shopify-cli-libraries/14"
},
"repository": {
"type": "git",
"url": "https://github.com/Shopify/cli.git",
"directory": "packages/plugin-cloudflare"
},
"license": "MIT",
"author": "Shopify",
"type": "module",
"module": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"/dist",
"/oclif.manifest.json"
],
"exports": {
"./hooks/*": {
"import": "./dist/*.js",
"require": "./dist/*.d.js"
}
},
"scripts": {
"build": "nx build",
"clean": "nx clean",
"lint": "nx lint",
"lint:fix": "nx lint:fix",
"prepack": "NODE_ENV=production pnpm nx build && pnpm oclif manifest && cp ../../README.md README.md",
"vitest": "vitest",
"type-check": "nx type-check"
},
"eslintConfig": {
"extends": [
"../../.eslintrc.cjs"
]
},
"dependencies": {
"@oclif/core": "4.5.3",
"@shopify/cli-kit": "3.92.0"
},
"devDependencies": {
"@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
}