-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
75 lines (75 loc) · 1.61 KB
/
package.json
File metadata and controls
75 lines (75 loc) · 1.61 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
68
69
70
71
72
73
74
75
{
"name": "react-hydration-provider",
"version": "2.1.0",
"license": "MIT",
"type": "module",
"description": "React tools for controlling what your app renders before and after app hydration.",
"keywords": [
"hydration",
"hydrated",
"hydration errors",
"SSR",
"SSG",
"DSG",
"server-side rendering",
"rendering"
],
"dependencies": {},
"devDependencies": {
"@tsconfig/node14": "^14.1.0",
"@types/jest": "^29.5.4",
"@types/jsdom": "^21.1.2",
"@types/node": "^20.5.6",
"@types/react": "^18.2.21",
"@types/react-dom": "^18.2.7",
"jest": "^29.6.4",
"jest-environment-jsdom": "^29.6.4",
"jsdom": "^22.1.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"ts-jest": "^29.1.1",
"ts-node": "^10.9.1",
"tsup": "^7.2.0",
"typescript": "^5.2.2",
"wait-for-expect": "^3.0.2"
},
"peerDependencies": {
"react": ">=16"
},
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./entry/index.js",
"require": "./entry/index.cjs"
}
},
"types": "./dist/index.d.ts",
"main": "./entry/index.cjs",
"files": [
"/entry/",
"/dist/"
],
"engines": {
"node": ">=16.0.0"
},
"scripts": {
"build": "tsup",
"test": "jest --coverage --watchAll",
"ci_test": "jest --coverage --ci",
"prepublishOnly": "yarn build"
},
"repository": {
"type": "git",
"url": "https://github.com/traviswimer/react-hydration-provider.git"
},
"bugs": {
"url": "https://github.com/traviswimer/react-hydration-provider/issues"
},
"homepage": "https://github.com/traviswimer/react-hydration-provider",
"contributors": [
{
"name": "Travis Wimer",
"url": "https://traviswimer.com"
}
]
}