-
Notifications
You must be signed in to change notification settings - Fork 240
Expand file tree
/
Copy pathpackage.json
More file actions
67 lines (67 loc) · 1.49 KB
/
package.json
File metadata and controls
67 lines (67 loc) · 1.49 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
{
"name": "@shopify/ui-extensions-server-kit",
"version": "5.3.1",
"packageManager": "pnpm@10.11.1",
"private": false,
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/Shopify/cli.git",
"directory": "packages/ui-extensions-server-kit"
},
"exports": {
"./package.json": "./package.json",
".": {
"require": "./index.js",
"import": "./index.mjs",
"types": "./index.d.ts"
},
"./testing": {
"require": "./testing.js",
"import": "./testing.mjs",
"types": "./testing.d.ts"
}
},
"main": "index.js",
"module": "index.mjs",
"types": "index.d.ts",
"files": [
"**"
],
"scripts": {
"build": "nx build",
"clean": "nx clean",
"lint": "nx lint",
"lint:fix": "nx lint:fix",
"prepack": "NODE_ENV=production pnpm nx build && cp ../../README.md README.md",
"vitest": "vitest"
},
"eslintConfig": {
"extends": [
"../../.eslintrc.cjs"
],
"rules": {
"@typescript-eslint/no-explicit-any": "off",
"import/extensions": [
"error",
"never",
{
"ignorePackages": true
}
]
}
},
"devDependencies": {
"@shopify/react-testing": "^3.0.0",
"@shopify/ui-extensions-test-utils": "3.26.0",
"@types/react": "17.0.2",
"@vitejs/plugin-react-refresh": "^1.3.6",
"jsdom": "^20.0.3",
"react": "^17.0.2",
"vi-fetch": "^0.8.0",
"vite": "6.4.1"
},
"peerDependencies": {
"react": "^17.0.2"
}
}