@fluxiapi/react 0.3.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/LICENSE +21 -0
- package/README.md +231 -0
- package/dist/index.d.mts +266 -0
- package/dist/index.d.ts +266 -0
- package/dist/index.js +1318 -0
- package/dist/index.mjs +1278 -0
- package/package.json +82 -0
package/package.json
ADDED
|
@@ -0,0 +1,82 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@fluxiapi/react",
|
|
3
|
+
"version": "0.3.0",
|
|
4
|
+
"description": "React DevTools for FluxAPI — live API health monitoring, TanStack Query & SWR integration",
|
|
5
|
+
"author": "Aswin <aswin@fluxapi.dev>",
|
|
6
|
+
"license": "MIT",
|
|
7
|
+
"repository": {
|
|
8
|
+
"type": "git",
|
|
9
|
+
"url": "https://github.com/aswinsasi/fluxapi.git",
|
|
10
|
+
"directory": "packages/react"
|
|
11
|
+
},
|
|
12
|
+
"homepage": "https://fluxapi.dev",
|
|
13
|
+
"bugs": {
|
|
14
|
+
"url": "https://github.com/aswinsasi/fluxapi/issues"
|
|
15
|
+
},
|
|
16
|
+
"main": "dist/index.js",
|
|
17
|
+
"module": "dist/index.mjs",
|
|
18
|
+
"types": "dist/index.d.ts",
|
|
19
|
+
"exports": {
|
|
20
|
+
".": {
|
|
21
|
+
"types": "./dist/index.d.ts",
|
|
22
|
+
"import": "./dist/index.mjs",
|
|
23
|
+
"require": "./dist/index.js"
|
|
24
|
+
}
|
|
25
|
+
},
|
|
26
|
+
"files": [
|
|
27
|
+
"dist",
|
|
28
|
+
"README.md",
|
|
29
|
+
"LICENSE"
|
|
30
|
+
],
|
|
31
|
+
"sideEffects": false,
|
|
32
|
+
"scripts": {
|
|
33
|
+
"build": "tsup",
|
|
34
|
+
"dev": "tsup --watch",
|
|
35
|
+
"test": "vitest run",
|
|
36
|
+
"test:watch": "vitest",
|
|
37
|
+
"lint": "tsc --noEmit",
|
|
38
|
+
"prepublishOnly": "npm run lint && npm test && npm run build"
|
|
39
|
+
},
|
|
40
|
+
"keywords": [
|
|
41
|
+
"fluxapi",
|
|
42
|
+
"react",
|
|
43
|
+
"devtools",
|
|
44
|
+
"api-health",
|
|
45
|
+
"tanstack-query",
|
|
46
|
+
"swr",
|
|
47
|
+
"performance",
|
|
48
|
+
"monitoring",
|
|
49
|
+
"network",
|
|
50
|
+
"lighthouse"
|
|
51
|
+
],
|
|
52
|
+
"engines": {
|
|
53
|
+
"node": ">=18.0.0"
|
|
54
|
+
},
|
|
55
|
+
"peerDependencies": {
|
|
56
|
+
"react": ">=17.0.0",
|
|
57
|
+
"react-dom": ">=17.0.0"
|
|
58
|
+
},
|
|
59
|
+
"peerDependenciesMeta": {
|
|
60
|
+
"@tanstack/react-query": {
|
|
61
|
+
"optional": true
|
|
62
|
+
},
|
|
63
|
+
"swr": {
|
|
64
|
+
"optional": true
|
|
65
|
+
}
|
|
66
|
+
},
|
|
67
|
+
"dependencies": {
|
|
68
|
+
"@fluxiapi/scan": "^0.3.0"
|
|
69
|
+
},
|
|
70
|
+
"devDependencies": {
|
|
71
|
+
"@tanstack/react-query": "^5.62.0",
|
|
72
|
+
"@types/node": "^20.19.33",
|
|
73
|
+
"@types/react": "^18.3.18",
|
|
74
|
+
"@types/react-dom": "^18.3.5",
|
|
75
|
+
"react": "^18.3.1",
|
|
76
|
+
"react-dom": "^18.3.1",
|
|
77
|
+
"swr": "^2.3.3",
|
|
78
|
+
"tsup": "^8.5.1",
|
|
79
|
+
"typescript": "^5.9.3",
|
|
80
|
+
"vitest": "^1.6.1"
|
|
81
|
+
}
|
|
82
|
+
}
|