forked from Shopify/hydrogen
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
128 lines (128 loc) · 3.24 KB
/
package.json
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
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
{
"name": "@shopify/cli-hydrogen",
"publishConfig": {
"access": "public",
"@shopify:registry": "https://registry.npmjs.org"
},
"version": "8.4.6",
"license": "MIT",
"type": "module",
"scripts": {
"build": "tsup && node scripts/build-check.mjs",
"dev": "tsup --watch ./src --watch ../../templates/skeleton",
"typecheck": "tsc --noEmit",
"generate:manifest": "node scripts/generate-manifest.mjs",
"test": "cross-env SHOPIFY_UNIT_TEST=1 vitest run --test-timeout=60000",
"test:watch": "cross-env SHOPIFY_UNIT_TEST=1 vitest --test-timeout=60000"
},
"devDependencies": {
"@remix-run/dev": "^2.10.1",
"@types/diff": "^5.0.2",
"@types/gunzip-maybe": "^1.4.0",
"@types/prettier": "^2.7.2",
"@types/source-map-support": "^0.5.10",
"@types/tar-fs": "^2.0.1",
"@vitest/coverage-v8": "^1.0.4",
"devtools-protocol": "^0.0.1177611",
"fast-glob": "^3.2.12",
"flame-chart-js": "2.3.2",
"get-port": "^7.0.0",
"type-fest": "^4.5.0",
"vite": "^5.1.0",
"vitest": "^1.0.4"
},
"dependencies": {
"@ast-grep/napi": "0.11.0",
"@oclif/core": "3.26.5",
"@shopify/cli-kit": "3.68.0",
"@shopify/oxygen-cli": "4.4.9",
"@shopify/plugin-cloudflare": "3.68.0",
"ansi-escapes": "^6.2.0",
"chokidar": "3.5.3",
"cli-truncate": "^4.0.0",
"diff": "^5.1.0",
"get-port": "^7.0.0",
"gunzip-maybe": "^1.4.2",
"prettier": "^2.8.4",
"semver": "^7.5.3",
"source-map": "^0.7.4",
"source-map-support": "^0.5.21",
"tar-fs": "^2.1.1",
"tempy": "3.0.0",
"ts-morph": "20.0.0",
"use-resize-observer": "^9.1.0"
},
"peerDependencies": {
"@graphql-codegen/cli": "^5.0.2",
"@remix-run/dev": "^2.1.0",
"@shopify/hydrogen-codegen": "^0.3.1",
"@shopify/mini-oxygen": "^3.0.6",
"graphql-config": "^5.0.3",
"vite": "^5.1.0"
},
"peerDependenciesMeta": {
"@graphql-codegen/cli": {
"optional": true
},
"@remix-run/dev": {
"optional": true
},
"@shopify/hydrogen-codegen": {
"optional": true
},
"@shopify/mini-oxygen": {
"optional": true
},
"graphql-config": {
"optional": true
},
"vite": {
"optional": true
}
},
"bin": "dist/create-app.js",
"exports": {
"./package.json": "./package.json",
"./commands/hydrogen/init": {
"types": "./dist/commands/hydrogen/init.d.ts",
"default": "./dist/commands/hydrogen/init.js"
},
".": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
}
},
"files": [
"dist",
"oclif.manifest.json"
],
"engines": {
"node": ">=18.0.0"
},
"oclif": {
"commands": "dist/commands",
"hooks": {
"init": "./dist/hooks/init.js"
},
"topics": {
"hydrogen": {
"description": "Shopify CLI commands for Hydrogen."
},
"hydrogen:debug": {
"description": "Debugging utilities."
},
"hydrogen:env": {
"description": "Syncs environment variables between .env and Oxygen."
},
"hydrogen:generate": {
"description": "Creates new routes."
},
"hydrogen:setup": {
"description": "Scaffolds new functionality."
}
},
"plugins": [
"@shopify/plugin-cloudflare"
]
}
}