forked from hoainho/react-debugger-extension
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
68 lines (68 loc) · 1.96 KB
/
package.json
File metadata and controls
68 lines (68 loc) · 1.96 KB
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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
{
"name": "react-debugger-extension",
"version": "2.0.3",
"description": "Chrome DevTools panel for React debugging: Timeline, Performance, Memory, Side Effects, Redux, CLS, AI analysis.",
"author": "NhoNH",
"license": "MIT",
"type": "module",
"keywords": [
"react",
"react-devtools",
"react-debugger",
"chrome-extension",
"performance",
"redux-devtools",
"profiler",
"memory-leak",
"side-effects",
"developer-tools"
],
"repository": {
"type": "git",
"url": "git+https://github.com/hoainho/react-debugger-extension.git"
},
"bugs": {
"url": "https://github.com/hoainho/react-debugger-extension/issues"
},
"homepage": "https://hoainho.github.io/react-debugger-extension/",
"funding": {
"type": "github",
"url": "https://github.com/sponsors/hoainho"
},
"scripts": {
"dev": "vite build --watch --mode development",
"build": "vite build --mode production",
"build:dev": "vite build --mode development",
"clean": "rm -rf dist",
"package": "npm run build && cd dist && zip -r ../react-debugger.zip .",
"test": "vitest",
"test:run": "vitest run",
"test:coverage": "vitest run --coverage",
"fixture:basic:dev": "npm --prefix test/fixtures/basic run dev",
"typecheck": "tsc --noEmit",
"typecheck:node": "tsc -p tsconfig.node.json --noEmit",
"bench": "vitest bench --run"
},
"devDependencies": {
"@resvg/resvg-js": "^2.6.2",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.2",
"@types/chrome": "^0.0.268",
"@types/jsdom": "^27.0.0",
"@types/react": "^18.2.48",
"@types/react-dom": "^18.2.18",
"@vitejs/plugin-react": "^4.2.1",
"jsdom": "^28.0.0",
"sharp": "^0.34.5",
"typescript": "^5.3.3",
"vite": "^5.0.12",
"vitest": "^4.0.18",
"wrangler": "^4.67.0"
},
"dependencies": {
"opencode-antigravity-auth": "^1.4.3",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"zod": "^4.4.3"
}
}