-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
50 lines (50 loc) · 1.13 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": "next-fetcher",
"version": "2.5.0",
"description": "A nextjs typescript friendly utility for seamless data fetching.",
"homepage": "https://github.com/siamahnaf/next-fetcher",
"main": "dist/cjs/index.js",
"module": "dist/esm/index.js",
"files": [
"dist"
],
"scripts": {
"build": "rimraf dist && npm run build:esm && npm run build:cjs",
"build:esm": "tsc",
"build:cjs": "tsc --module CommonJS --outDir dist/cjs"
},
"author": {
"name": "Siam Ahnaf",
"email": "[email protected]",
"url": "https://www.siamahnaf.com"
},
"license": "ISC",
"keywords": [
"js",
"cookies",
"cookie",
"next",
"next.js",
"nextjs",
"next-fetcher",
"api",
"api-fetching",
"auto-fetching",
"data-fetching"
],
"repository": {
"type": "git",
"directory": "https://github.com/siamahnaf/next-fetcher",
"url": "https://github.com/siamahnaf/next-fetcher"
},
"devDependencies": {
"@types/node": "^18.16.3",
"next": "^14.2.3",
"typescript": "^5.0.4"
},
"dependencies": {
"@types/cookie": "^0.6.0",
"axios": "^1.7.2",
"cookie": "^0.6.0"
}
}