-
Notifications
You must be signed in to change notification settings - Fork 240
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 1.38 KB
/
package.json
File metadata and controls
64 lines (64 loc) · 1.38 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
{
"name": "@shopify/plugin-did-you-mean",
"version": "3.92.0",
"packageManager": "pnpm@10.11.1",
"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/plugin-did-you-mean"
},
"license": "MIT",
"author": "Shopify",
"type": "module",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"files": [
"/dist",
"/oclif.manifest.json"
],
"exports": {
".": {
"import": "./dist/index.js",
"require": "./dist/index.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",
"n-gram": "2.0.2"
},
"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
}