This repository has been archived by the owner on Oct 1, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 224
/
package.json
78 lines (78 loc) · 1.91 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
{
"name": "@shopify/react-network",
"version": "5.2.3",
"license": "MIT",
"description": "A collection of components that allow you to set common HTTP headers from within your React application",
"main": "index.js",
"types": "./build/ts/index.d.ts",
"typesVersions": {
"*": {
"server": [
"./build/ts/server.d.ts"
]
}
},
"sideEffects": false,
"publishConfig": {
"access": "public",
"@shopify:registry": "https://registry.npmjs.org"
},
"author": "Shopify Inc.",
"repository": {
"type": "git",
"url": "git+https://github.com/Shopify/quilt.git",
"directory": "packages/react-network"
},
"bugs": {
"url": "https://github.com/Shopify/quilt/issues"
},
"homepage": "https://github.com/Shopify/quilt/blob/main/packages/react-network/README.md",
"engines": {
"node": ">=18.12.0"
},
"dependencies": {
"@shopify/network": "^3.3.0",
"@shopify/react-effect": "^5.2.0",
"@shopify/react-hooks": "^4.1.2",
"@shopify/react-universal-provider": "^3.1.4",
"@types/accept-language-parser": "1.5.0",
"@types/cookie": "^0.3.3",
"@types/koa": "^2.0.0",
"accept-language-parser": "1.5.0",
"cookie": "^0.4.0"
},
"devDependencies": {
"@shopify/jest-koa-mocks": "^5.3.1"
},
"peerDependencies": {
"koa": "^2.5.0",
"react": ">=18.0.0 <19.0.0"
},
"files": [
"build/",
"!build/*.tsbuildinfo",
"!build/ts/**/tests/",
"index.js",
"index.mjs",
"index.esnext",
"server.js",
"server.mjs",
"server.esnext"
],
"module": "index.mjs",
"esnext": "index.esnext",
"exports": {
"./server": {
"types": "./build/ts/server.d.ts",
"esnext": "./server.esnext",
"import": "./server.mjs",
"require": "./server.js"
},
".": {
"types": "./build/ts/index.d.ts",
"esnext": "./index.esnext",
"import": "./index.mjs",
"require": "./index.js"
}
}
}