-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 830 Bytes
/
Copy pathpackage.json
File metadata and controls
37 lines (37 loc) · 830 Bytes
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
{
"name": "@caixue/react-loadable",
"version": "1.3.0",
"description": "A higher order component for loading components with dynamic imports.Support vite and webpack.",
"main": "cjs/index.js",
"module": "esm/index.js",
"author": "caixue",
"types": "esm/index.d.ts",
"license": "MIT",
"files": [
"cjs",
"esm",
"README.md"
],
"scripts": {
"build": "tsc && tsc --outDir ./cjs --module commonjs"
},
"devDependencies": {
"@types/node": "^15.6.1",
"@types/react": "^17.0.8",
"react": "^17.0.2",
"typescript": "^4.3.2"
},
"peerDependencies": {
"react": ">=16.8.0"
},
"keywords": [
"react-loadable",
"vite"
],
"publishConfig": {
"registry": "https://registry.npmjs.org"
},
"repository": {
"url": "https://github.com/cx690/react-loadable"
}
}