@jagoankode/api-client 1.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.d.mts +88 -0
- package/dist/index.d.ts +88 -0
- package/dist/index.js +941 -0
- package/dist/index.js.map +1 -0
- package/dist/index.mjs +901 -0
- package/dist/index.mjs.map +1 -0
- package/dist/init.js +5650 -0
- package/dist/init.js.map +1 -0
- package/package.json +58 -0
package/package.json
ADDED
|
@@ -0,0 +1,58 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@jagoankode/api-client",
|
|
3
|
+
"version": "1.0.0",
|
|
4
|
+
"description": "Next.js API Tester - Postman-like HTTP client library for Next.js App Router with automatic NextAuth cookie handling",
|
|
5
|
+
"main": "./dist/index.js",
|
|
6
|
+
"module": "./dist/index.mjs",
|
|
7
|
+
"types": "./dist/index.d.ts",
|
|
8
|
+
"exports": {
|
|
9
|
+
".": {
|
|
10
|
+
"types": "./dist/index.d.ts",
|
|
11
|
+
"import": "./dist/index.mjs",
|
|
12
|
+
"require": "./dist/index.js"
|
|
13
|
+
}
|
|
14
|
+
},
|
|
15
|
+
"bin": {
|
|
16
|
+
"api-client": "./dist/cli.js"
|
|
17
|
+
},
|
|
18
|
+
"files": [
|
|
19
|
+
"dist"
|
|
20
|
+
],
|
|
21
|
+
"scripts": {
|
|
22
|
+
"build": "tsup",
|
|
23
|
+
"build:css": "tailwindcss -i src/styles.css -o dist/styles.css --config tailwind.config.js --minify",
|
|
24
|
+
"dev": "tsup --watch",
|
|
25
|
+
"prepublishOnly": "npm run build"
|
|
26
|
+
},
|
|
27
|
+
"keywords": [
|
|
28
|
+
"nextjs",
|
|
29
|
+
"api-tester",
|
|
30
|
+
"http-client",
|
|
31
|
+
"postman",
|
|
32
|
+
"next-auth",
|
|
33
|
+
"development-tools"
|
|
34
|
+
],
|
|
35
|
+
"author": "Brillian Andrie",
|
|
36
|
+
"license": "MIT",
|
|
37
|
+
"peerDependencies": {
|
|
38
|
+
"next": ">=13",
|
|
39
|
+
"react": ">=18",
|
|
40
|
+
"react-dom": ">=18"
|
|
41
|
+
},
|
|
42
|
+
"devDependencies": {
|
|
43
|
+
"@types/fs-extra": "^11.0.4",
|
|
44
|
+
"@types/node": "^25.9.1",
|
|
45
|
+
"@types/react": "^19.2.16",
|
|
46
|
+
"@types/react-dom": "^19.2.3",
|
|
47
|
+
"autoprefixer": "^10.5.0",
|
|
48
|
+
"commander": "^15.0.0",
|
|
49
|
+
"fs-extra": "^11.3.5",
|
|
50
|
+
"postcss": "^8.5.15",
|
|
51
|
+
"react": "^19.2.7",
|
|
52
|
+
"react-dom": "^19.2.7",
|
|
53
|
+
"tailwindcss": "^3.4.19",
|
|
54
|
+
"tsup": "^8.5.1",
|
|
55
|
+
"typescript": "^5.6.3",
|
|
56
|
+
"zustand": "^5.0.14"
|
|
57
|
+
}
|
|
58
|
+
}
|