-
Notifications
You must be signed in to change notification settings - Fork 25.2k
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1.1 KB
/
Copy pathpackage.json
File metadata and controls
42 lines (42 loc) · 1.1 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
{
"name": "@react-native/core-cli-utils",
"version": "0.87.0-main",
"description": "React Native CLI library for Frameworks to build on",
"license": "MIT",
"keywords": [
"cli-utils",
"react-native"
],
"homepage": "https://github.com/facebook/react-native/tree/HEAD/packages/core-cli-utils#readme",
"bugs": "https://github.com/facebook/react-native/issues",
"repository": {
"type": "git",
"url": "git+https://github.com/facebook/react-native.git",
"directory": "packages/core-cli-utils"
},
"main": "./src/index.flow.js",
"exports": {
".": "./src/index.js",
"./package.json": "./package.json",
"./version.js": "./src/public/version.js"
},
"publishConfig": {
"main": "./dist/index.js",
"exports": {
".": "./dist/index.js",
"./package.json": "./package.json",
"./version.js": "./dist/public/version.js"
}
},
"files": [
"dist"
],
"scripts": {
"prepack": "node ../../scripts/build/prepack.js"
},
"dependencies": {},
"devDependencies": {},
"engines": {
"node": "^20.19.4 || ^22.13.0 || ^24.3.0 || >= 25.0.0"
}
}