-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
46 lines (46 loc) · 1.16 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
{
"name": "next-use-warmroutes",
"version": "0.1.1",
"description": "Next useWarmRoutes hook gives developers control over when to warm up a specific serverless / SSR route.",
"source": "src/index.ts",
"main": "dist/main.js",
"types": "dist/types.d.ts",
"scripts": {
"watch": "parcel watch",
"build": "parcel build",
"test": "jest"
},
"author": "lws803",
"license": "MIT",
"devDependencies": {
"@parcel/packager-ts": "^2.8.3",
"@parcel/transformer-typescript-types": "^2.8.3",
"@testing-library/react": "^14.0.0",
"@types/jest": "^29.5.1",
"@types/react": "^18.2.6",
"babel-jest": "^29.5.0",
"jest": "^29.5.0",
"jest-environment-jsdom": "^29.5.0",
"jest-fetch-mock": "^3.0.3",
"parcel": "^2.8.3",
"ts-jest": "^29.1.0",
"typescript": "^5.0.4"
},
"peerDependencies": {
"next": ">= 13.0.0",
"react": ">= 16.0.0"
},
"keywords": [
"react",
"nextjs",
"serverless"
],
"homepage": "https://github.com/lws803/next-use-warmroutes",
"funding": {
"type": "individual",
"url": "https://www.buymeacoffee.com/lws803"
},
"dependencies": {
"minimatch": "^9.0.0"
}
}