-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.17 KB
/
package.json
File metadata and controls
50 lines (50 loc) · 1.17 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
{
"name": "react-halt",
"version": "1.3.3",
"description": "react中实现组件的冻结",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"build": "webpack --config webpack.config.ts && npm run type",
"type": "tsc --emitDeclarationOnly"
},
"keywords": [
"react",
"freeze",
"component",
"keep-alive"
],
"author": "jqm",
"license": "MIT",
"dependencies": {
"@babel/core": "^7.27.4",
"@babel/preset-env": "^7.27.2",
"@babel/preset-react": "^7.27.1",
"@babel/preset-typescript": "^7.27.1",
"@babel/register": "^7.27.1",
"babel-loader": "^10.0.0",
"react": ">=18.0.0",
"webpack": "^5.99.9",
"webpack-cli": "^6.0.1"
},
"repository": {
"type": "git",
"url": "https://github.com/quanming1/react-halt.git"
},
"homepage": "https://www.npmjs.com/package/react-halt",
"peerDependencies": {
"react": ">=18.0.0",
"react-dom": ">=18.0.0"
},
"devDependencies": {
"@types/react": "^18.0.0",
"@types/react-dom": "^18.0.0",
"babel-preset-react-app": "^9.1.2",
"react": "^18.0.0",
"react-dom": "^18.0.0",
"typescript": "^4.9.0"
}
}