-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
50 lines (50 loc) · 1.23 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
44
45
46
47
48
49
50
{
"name": "rspack-plugin-retry-chunk-load",
"version": "1.0.0",
"description": "A rspack plugin to retry loading of chunks that failed to load",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"directories": {
"test": "test"
},
"peerDependencies": {
"@rspack/core": ">=1.0.7"
},
"devDependencies": {
"@eslint/js": "^9.17.0",
"@rspack/cli": "1.1.8",
"@types/express": "^5.0.0",
"@types/node": "^22.10.2",
"eslint": "^9.17.0",
"eslint-config-typescript": "^3.0.0",
"express": "^4.21.2",
"husky": "^9.1.7",
"ts-node": "^10.9.2",
"typescript": "^5.7.2",
"typescript-eslint": "^8.18.2"
},
"scripts": {
"lint": "eslint",
"test": "rspack --config test/rspack.config.ts && node test/server.mjs",
"prepare": "npm run build",
"build": "tsc -p tsconfig.build.json",
"pretest": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/khodorammar/rspack-retry-chunk-load-plugin.git"
},
"keywords": [
"rspack",
"rspack plugin"
],
"author": "Khodor Ammar",
"license": "MIT",
"bugs": {
"url": "https://github.com/khodorammar/rspack-retry-chunk-load-plugin/issues"
},
"homepage": "https://github.com/khodorammar/rspack-retry-chunk-load-plugin#readme",
"files": [
"dist"
]
}