forked from Shopify/quilt
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
51 lines (51 loc) · 1.16 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
{
"name": "@shopify/react-hydrate",
"version": "1.2.7",
"license": "MIT",
"description": "Utilities for hydrating server-rendered React apps",
"main": "index.js",
"types": "index.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-hydrate"
},
"bugs": {
"url": "https://github.com/Shopify/quilt/issues"
},
"homepage": "https://github.com/Shopify/quilt/blob/main/packages/react-hydrate/README.md",
"dependencies": {
"@shopify/react-effect": "^3.3.6",
"@shopify/react-hooks": "^1.13.1"
},
"devDependencies": {
"faker": "^4.1.0"
},
"peerDependencies": {
"react": "^16.8.0"
},
"files": [
"build/*",
"!*.tsbuildinfo",
"index.js",
"index.mjs",
"index.esnext",
"index.d.ts"
],
"module": "index.mjs",
"esnext": "index.esnext",
"exports": {
"./": "./",
".": {
"import": "./index.mjs",
"require": "./index.js",
"esnext": "./index.esnext"
}
}
}