-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
43 lines (43 loc) · 1.04 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
{
"name": "react-fiber-keep-alive",
"version": "0.7.1",
"description": "Keep-Alive for React DOM",
"main": "lib/cjs/index.js",
"module": "lib/esm/index.js",
"types": "lib/types/index.d.ts",
"files": [
"lib"
],
"author": "Shen Junru <[email protected]>",
"license": "MIT",
"keywords": [
"react",
"fiber",
"keep-alive"
],
"repository": {
"type": "git",
"url": "git+https://github.com/shenjunru/react-fiber-keep-alive.git"
},
"bugs": {
"url": "https://github.com/shenjunru/react-fiber-keep-alive/issues"
},
"homepage": "https://github.com/shenjunru/react-fiber-keep-alive",
"scripts": {
"build": "tsc --build tsconfig.esm.json tsconfig.cjs.json tsconfig.types.json"
},
"sideEffects": false,
"peerDependencies": {
"react": "^16.8 || 17 || 18",
"react-dom": "^16.8 || 17 || 18"
},
"devDependencies": {
"@types/react": "16.9.43",
"@types/react-reconciler": "0.26.6",
"react": "16.13.1",
"typescript": "4.6.3"
},
"resolutions": {
"@types/react": "16.9.43"
}
}