-
Notifications
You must be signed in to change notification settings - Fork 25.1k
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.44 KB
/
package.json
File metadata and controls
58 lines (58 loc) · 1.44 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
{
"name": "@react-native/debugger-shell",
"productName": "React Native DevTools",
"version": "0.86.0-main",
"description": "Experimental debugger shell for React Native for use with @react-native/debugger-frontend",
"keywords": [
"react-native",
"tools"
],
"homepage": "https://github.com/facebook/react-native/tree/HEAD/packages/debugger-shell#readme",
"bugs": "https://github.com/facebook/react-native/issues",
"main": "./src/index.js",
"exports": {
".": {
"node": "./src/node/index.js",
"electron": "./src/electron/index.js"
},
"./package.json": "./package.json"
},
"publishConfig": {
"main": "./dist/index.js",
"exports": {
".": {
"node": "./dist/node/index.js",
"electron": "./dist/electron/index.js"
},
"./package.json": "./package.json"
}
},
"scripts": {
"dev": "electron src/electron",
"prepack": "node ../../scripts/build/prepack.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/facebook/react-native.git",
"directory": "packages/debugger-shell"
},
"license": "MIT",
"engines": {
"node": "^20.19.4 || ^22.13.0 || ^24.3.0 || >= 25.0.0"
},
"dependencies": {
"cross-spawn": "^7.0.6",
"debug": "^4.4.0",
"fb-dotslash": "0.5.8"
},
"devDependencies": {
"electron": "39.8.5",
"semver": "^7.1.3"
},
"files": [
"!**/__tests__/**",
"bin",
"dist",
"!src/electron"
]
}