react-render-detective 0.1.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/package.json ADDED
@@ -0,0 +1,88 @@
1
+ {
2
+ "name": "react-render-detective",
3
+ "version": "0.1.0",
4
+ "description": "Know WHY your React components render \u2014 not just that they did.",
5
+ "keywords": [
6
+ "react",
7
+ "render",
8
+ "performance",
9
+ "debug",
10
+ "devtools",
11
+ "profiler",
12
+ "re-render",
13
+ "memo"
14
+ ],
15
+ "license": "MIT",
16
+ "author": "shubambhasin",
17
+ "homepage": "https://shubambhasin.github.io/react-render-detective/",
18
+ "repository": {
19
+ "type": "git",
20
+ "url": "git+https://github.com/shubambhasin/react-render-detective.git"
21
+ },
22
+ "bugs": {
23
+ "url": "https://github.com/shubambhasin/react-render-detective/issues"
24
+ },
25
+ "type": "module",
26
+ "sideEffects": false,
27
+ "engines": {
28
+ "node": ">=18"
29
+ },
30
+ "files": [
31
+ "dist",
32
+ "README.md",
33
+ "LICENSE"
34
+ ],
35
+ "main": "./dist/index.cjs",
36
+ "module": "./dist/index.js",
37
+ "types": "./dist/index.d.ts",
38
+ "exports": {
39
+ ".": {
40
+ "types": "./dist/index.d.ts",
41
+ "import": "./dist/index.js",
42
+ "require": "./dist/index.cjs"
43
+ },
44
+ "./core": {
45
+ "types": "./dist/core.d.ts",
46
+ "import": "./dist/core.js",
47
+ "require": "./dist/core.cjs"
48
+ },
49
+ "./overlay": {
50
+ "types": "./dist/overlay.d.ts",
51
+ "import": "./dist/overlay.js",
52
+ "require": "./dist/overlay.cjs"
53
+ },
54
+ "./package.json": "./package.json"
55
+ },
56
+ "scripts": {
57
+ "build": "tsup",
58
+ "typecheck": "tsc --noEmit",
59
+ "test": "vitest run",
60
+ "test:watch": "vitest",
61
+ "size": "npm run build && node scripts/size.mjs",
62
+ "bench": "node bench/run.mjs",
63
+ "prepublishOnly": "npm run build"
64
+ },
65
+ "peerDependencies": {
66
+ "react": ">=16.9.0"
67
+ },
68
+ "peerDependenciesMeta": {
69
+ "react": {
70
+ "optional": false
71
+ }
72
+ },
73
+ "devDependencies": {
74
+ "@testing-library/react": "^16.1.0",
75
+ "@types/react": "^19.0.0",
76
+ "@types/react-dom": "^19.0.0",
77
+ "esbuild": "^0.28.2",
78
+ "jsdom": "^25.0.1",
79
+ "react": "^19.0.0",
80
+ "react-dom": "^19.0.0",
81
+ "tsup": "^8.3.5",
82
+ "typescript": "^5.7.2",
83
+ "vitest": "^2.1.8"
84
+ },
85
+ "publishConfig": {
86
+ "access": "public"
87
+ }
88
+ }