This repository has been archived by the owner on Jan 10, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 226
/
Copy pathpackage.json
75 lines (75 loc) · 1.77 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
{
"name": "@shopify/react-html",
"version": "13.2.3",
"license": "MIT",
"description": "A component to render your React app with no static HTML",
"main": "index.js",
"types": "./build/ts/index.d.ts",
"typesVersions": {
"*": {
"server": [
"./build/ts/server/index.d.ts"
]
}
},
"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-html"
},
"bugs": {
"url": "https://github.com/Shopify/quilt/issues"
},
"homepage": "https://github.com/Shopify/quilt/blob/main/packages/react-html/README.md",
"engines": {
"node": ">=18.12.0"
},
"dependencies": {
"@shopify/react-effect": "^5.2.0",
"@shopify/react-hydrate": "^3.1.4",
"@types/multistream": "^2.1.1",
"multistream": "^2.1.1",
"serialize-javascript": "^3.0.0"
},
"peerDependencies": {
"react": ">=18.0.0 <19.0.0",
"react-dom": ">=16.8.0 <19.0.0"
},
"devDependencies": {
"@shopify/react-testing": "^6.0.0",
"@shopify/with-env": "^3.1.0"
},
"sideEffects": false,
"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/index.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"
}
}
}