-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
68 lines (68 loc) · 1.63 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
{
"name": "react-router-lazy-retry",
"version": "1.0.2",
"description": "React Router lazy loading retry utility",
"homepage": "https://github.com/blackjack26/react-router-lazy-retry#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/blackjack26/react-router-lazy-retry.git"
},
"bugs": {
"url": "https://github.com/blackjack26/react-router-lazy-retry/issues"
},
"exports": {
".": {
"import": {
"types": "./dist/types/index.d.ts",
"default": "./dist/lib/index.esm.js"
},
"require": {
"types": "./dist/types/index.d.ts",
"default": "./dist/lib/index.cjs.js"
}
}
},
"types": "./dist/types/index.d.ts",
"main": "./dist/lib/index.cjs.js",
"files": [
"dist/**/*"
],
"scripts": {
"build": "npm run clean && npm run build:types && rollup -c rollup.config.mjs",
"build:types": "tsc --outDir out --declarationDir dist/types --declaration true",
"clean": "rm -rf ./dist",
"prepack": "npm run build",
"semantic-release": "semantic-release"
},
"keywords": [
"react",
"react-router",
"lazy",
"retry",
"react-router-dom",
"code splitting",
"auto-retry",
"lazy-loading"
],
"author": "Jack Grzechowiak",
"license": "MIT",
"publishConfig": {
"access": "public"
},
"release": {
"branches": [
"master"
]
},
"peerDependencies": {
"react-router-dom": ">=6.9.0"
},
"devDependencies": {
"@rollup/plugin-terser": "^0.4.0",
"rollup": "^3.20.2",
"semantic-release": "^21.0.0",
"ts-node": "^10.9.1",
"tslib": "^2.5.0",
"typescript": "^5.0.3"
}
}