-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 1.5 KB
/
package.json
File metadata and controls
61 lines (61 loc) · 1.5 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
{
"name": "loadzilla",
"version": "0.0.5",
"scripts": {
"build": "tsup",
"test": "jest",
"ci": "npm run build && npm run check-format",
"format": "prettier --write .",
"check-format": "prettier --check .",
"lint": "tsc",
"prepublishOnly": "npm run ci",
"local-release": "changeset version && changeset publish"
},
"peerDependencies": {
"next": "^14.0.0 || ^15.0.0",
"react": "^18.2.0 || ^19.0.0 ",
"react-dom": "^18.2.0 || ^19.0.0"
},
"devDependencies": {
"@changesets/cli": "^2.27.9",
"@types/react": "^18.3.11",
"@types/react-dom": "^18.3.1",
"next": "^14.2.15",
"prettier": "^3.3.3",
"tsup": "^8.3.0",
"typescript": "^4.9.5"
},
"exports": {
"./package.json": "./package.json",
".": {
"import": "./dist/index.js",
"require": "./dist/index.cjs"
}
},
"description": "A dynamic component loader with auto-retry functionality for React and Next.js applications",
"keywords": [
"react",
"next.js",
"dynamic-import",
"auto-retry",
"typescript"
],
"homepage": "https://github.com/Apolloic/loadzilla",
"bugs": {
"url": "https://github.com/Apolloic/loadzilla/issues"
},
"author": "Erfan Abbasi (https://github.com/Apolloic)",
"repository": {
"type": "git",
"url": "git+https://github.com/Apolloic/loadzilla.git"
},
"main": "dist/index.js",
"module": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist",
"src"
],
"type": "module",
"license": "MIT"
}