forked from Shopify/hydrogen
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
72 lines (72 loc) · 1.83 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
{
"name": "@shopify/cli-hydrogen",
"publishConfig": {
"access": "public",
"@shopify:registry": "https://registry.npmjs.org"
},
"version": "4.0.9",
"license": "SEE LICENSE IN LICENSE.md",
"type": "module",
"scripts": {
"build": "tsup --clean --config ./tsup.config.ts && oclif manifest",
"dev": "tsup --watch --config ./tsup.config.ts",
"typecheck": "tsc --noEmit",
"generate:manifest": "oclif manifest",
"test": "cross-env SHOPIFY_UNIT_TEST=1 vitest run",
"test:watch": "cross-env SHOPIFY_UNIT_TEST=1 vitest"
},
"devDependencies": {
"@types/fs-extra": "^9.0.13",
"@types/gunzip-maybe": "^1.4.0",
"@types/prettier": "^2.7.2",
"@types/recursive-readdir": "^2.2.1",
"@types/tar-fs": "^2.0.1",
"oclif": "^3.4.2",
"vitest": "^0.28.1",
"tempy": "^3.0.0"
},
"peerDependencies": {
"@remix-run/react": "^1.14.3",
"@shopify/hydrogen-react": "^2023.1.7",
"@shopify/remix-oxygen": "^1.0.4"
},
"dependencies": {
"@oclif/core": "^1.20.4",
"@remix-run/dev": "^1.14.3",
"@shopify/cli-kit": "3.29.0",
"@shopify/mini-oxygen": "^1.3.1",
"fast-glob": "^3.2.12",
"fs-extra": "^10.1.0",
"gunzip-maybe": "^1.4.2",
"prettier": "^2.8.4",
"recursive-readdir": "^2.2.3",
"tar-fs": "^2.1.1",
"typescript": "^4.9.5"
},
"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"
}
},
"files": [
"dist",
"oclif.manifest.json"
],
"engines": {
"node": ">=16.13"
},
"oclif": {
"commands": "dist/commands",
"hooks": {
"init": "./dist/hooks/init.js"
},
"topics": {
"hydrogen": {
"description": "Hydrogen commands"
}
}
}
}