react-dev-panel 0.1.0 → 0.2.1
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.cjs +1299 -821
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +4 -6
- package/dist/index.d.ts +4 -6
- package/dist/index.js +1281 -822
- package/dist/index.js.map +1 -1
- package/package.json +11 -2
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "react-dev-panel",
|
|
3
|
-
"version": "0.1
|
|
3
|
+
"version": "0.2.1",
|
|
4
4
|
"description": "A framework-agnostic, self-contained floating dev panel for React: Developer Logs, Page Performance, and a Component Graph Inspector (hover-to-source, component tree, open-in-editor).",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"author": "Pavan Kumar Mistry",
|
|
@@ -40,7 +40,8 @@
|
|
|
40
40
|
"types": "./dist/adapters/server.d.ts",
|
|
41
41
|
"import": "./dist/adapters/server.js",
|
|
42
42
|
"require": "./dist/adapters/server.cjs"
|
|
43
|
-
}
|
|
43
|
+
},
|
|
44
|
+
"./package.json": "./package.json"
|
|
44
45
|
},
|
|
45
46
|
"scripts": {
|
|
46
47
|
"build": "tsup",
|
|
@@ -55,16 +56,24 @@
|
|
|
55
56
|
"peerDependencies": {
|
|
56
57
|
"react": ">=18",
|
|
57
58
|
"react-dom": ">=18",
|
|
59
|
+
"@mui/material": ">=7",
|
|
60
|
+
"@emotion/react": ">=11",
|
|
61
|
+
"@emotion/styled": ">=11",
|
|
62
|
+
"react-icons": ">=5",
|
|
58
63
|
"typescript": ">=5"
|
|
59
64
|
},
|
|
60
65
|
"peerDependenciesMeta": {
|
|
61
66
|
"typescript": { "optional": true }
|
|
62
67
|
},
|
|
63
68
|
"devDependencies": {
|
|
69
|
+
"@emotion/react": "^11.13.5",
|
|
70
|
+
"@emotion/styled": "^11.13.5",
|
|
71
|
+
"@mui/material": "^7.0.0",
|
|
64
72
|
"@types/node": "^22.10.0",
|
|
65
73
|
"@types/react": "^19.0.0",
|
|
66
74
|
"react": "^19.0.0",
|
|
67
75
|
"react-dom": "^19.0.0",
|
|
76
|
+
"react-icons": "^5.4.0",
|
|
68
77
|
"tsup": "^8.3.5",
|
|
69
78
|
"typescript": "^5.7.2"
|
|
70
79
|
},
|