-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.15 KB
/
package.json
File metadata and controls
50 lines (50 loc) · 1.15 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
{
"name": "react-devtool-cli",
"version": "0.1.34",
"description": "Agent-first CLI for React component tree inspection, snapshot-aware node debugging, and profiler analysis through a Playwright-managed browser session.",
"license": "MIT",
"type": "module",
"homepage": "https://github.com/Ring-wdr/react-devtool-cli#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/Ring-wdr/react-devtool-cli.git"
},
"bugs": {
"url": "https://github.com/Ring-wdr/react-devtool-cli/issues"
},
"keywords": [
"react",
"react-devtools",
"react-profiler",
"debugging",
"inspection",
"cli",
"playwright",
"browser-automation",
"component-tree",
"agent-tooling"
],
"files": [
"dist/",
"README.md"
],
"bin": {
"rdt": "dist/bin/rdt.js"
},
"scripts": {
"build": "node scripts/build.mjs",
"prepack": "npm run build",
"test": "node test/run-tests.js"
},
"engines": {
"node": ">=22.0.0"
},
"dependencies": {
"playwright": "1.58.2"
},
"devDependencies": {
"esbuild": "^0.27.4",
"react-debug-tools": "^0.1.0",
"react-devtools-core": "^7.0.1"
}
}