-
Notifications
You must be signed in to change notification settings - Fork 240
Expand file tree
/
Copy pathpackage.json
More file actions
70 lines (70 loc) · 1.62 KB
/
package.json
File metadata and controls
70 lines (70 loc) · 1.62 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
{
"name": "@shopify/theme",
"version": "3.92.0",
"packageManager": "pnpm@10.11.1",
"private": true,
"description": "Utilities for building and publishing themes",
"homepage": "https://github.com/shopify/cli#readme",
"bugs": {
"url": "https://community.shopify.dev/c/shopify-cli-libraries/14"
},
"repository": {
"type": "git",
"url": "https://github.com/Shopify/cli.git",
"directory": "packages/theme"
},
"license": "MIT",
"type": "module",
"exports": {
".": {
"import": "./dist/index.js",
"types": "./dist/index.d.ts"
}
},
"files": [
"/dist",
"/oclif.manifest.json"
],
"scripts": {
"build": "nx build",
"dev": "nx dev",
"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",
"@shopify/theme-check-node": "3.24.0",
"@shopify/theme-language-server-node": "2.20.2",
"chokidar": "3.6.0",
"h3": "1.15.9",
"yaml": "2.8.3"
},
"devDependencies": {
"@shopify/theme-hot-reload": "^0.0.18",
"@vitest/coverage-istanbul": "^3.1.4",
"node-stream-zip": "^1.15.0"
},
"engines": {
"node": ">=20.10.0"
},
"os": [
"darwin",
"linux",
"win32"
],
"publishConfig": {
"@shopify:registry": "https://registry.npmjs.org",
"access": "public"
},
"engine-strict": true
}