-
Notifications
You must be signed in to change notification settings - Fork 117
Expand file tree
/
Copy pathpackage.json
More file actions
104 lines (104 loc) · 2.91 KB
/
package.json
File metadata and controls
104 lines (104 loc) · 2.91 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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
{
"name": "@rnx-kit/cli",
"version": "1.1.2",
"description": "Command-line interface for working with kit packages in your repo",
"homepage": "https://github.com/microsoft/rnx-kit/tree/main/packages/cli#readme",
"license": "MIT",
"author": {
"name": "Microsoft Open Source",
"email": "microsoftopensource@users.noreply.github.com"
},
"repository": {
"type": "git",
"url": "https://github.com/microsoft/rnx-kit",
"directory": "packages/cli"
},
"bin": {
"rnx-cli": "bin/rnx-cli.cjs"
},
"files": [
"bin/rnx-cli.mjs",
"lib/**/*.d.ts",
"lib/**/*.js",
"react-native.config.js"
],
"main": "lib/index.js",
"types": "lib/index.d.ts",
"exports": {
".": {
"types": "./lib/index.d.ts",
"default": "./lib/index.js"
},
"./react-native.config": "./react-native.config.js",
"./react-native.config.js": "./react-native.config.js",
"./package.json": "./package.json"
},
"scripts": {
"build": "rnx-kit-scripts build",
"format": "rnx-kit-scripts format",
"lint": "rnx-kit-scripts lint",
"test": "rnx-kit-scripts test"
},
"dependencies": {
"@rnx-kit/align-deps": "^3.4.6",
"@rnx-kit/config": "^0.7.5",
"@rnx-kit/console": "^2.0.0",
"@rnx-kit/metro-plugin-cyclic-dependencies-detector": "^2.0.3",
"@rnx-kit/metro-plugin-duplicates-checker": "^3.0.3",
"@rnx-kit/metro-plugin-typescript": "^0.5.4",
"@rnx-kit/metro-serializer": "^2.0.0",
"@rnx-kit/metro-serializer-esbuild": "^0.3.1",
"@rnx-kit/metro-service": "^4.1.5",
"@rnx-kit/third-party-notices": "^2.0.0",
"@rnx-kit/tools-android": "^0.2.2",
"@rnx-kit/tools-apple": "^0.2.2",
"@rnx-kit/tools-filesystem": "^0.2.0",
"@rnx-kit/tools-language": "^3.0.1",
"@rnx-kit/tools-node": "^3.0.4",
"@rnx-kit/tools-react-native": "^2.3.6",
"@rnx-kit/types-bundle-config": "^1.0.0",
"@rnx-kit/types-kit-config": "^1.0.0",
"@rnx-kit/types-node": "^1.0.0",
"commander": "^11.1.0",
"ora": "^5.4.1",
"qrcode": "^1.5.0"
},
"devDependencies": {
"@babel/core": "^7.20.0",
"@babel/preset-env": "^7.20.0",
"@react-native-community/cli-types": "^20.0.0",
"@react-native-windows/cli": "^0.79.0",
"@rnx-kit/jest-preset": "*",
"@rnx-kit/scripts": "*",
"@rnx-kit/tsconfig": "*",
"@types/connect": "^3.4.36",
"@types/node": "^24.0.0",
"@types/qrcode": "^1.4.2",
"markdown-table": "^3.0.0",
"memfs": "^4.56.10",
"metro": "^0.83.3",
"metro-babel-transformer": "^0.83.1",
"metro-config": "^0.83.3",
"react": "19.2.0",
"react-native": "^0.83.0",
"type-fest": "^4.0.0"
},
"peerDependencies": {
"jest": ">=26.0",
"react-native": ">=0.64"
},
"peerDependenciesMeta": {
"jest": {
"optional": true
},
"react-native": {
"optional": true
}
},
"jest": {
"preset": "@rnx-kit/jest-preset/private"
},
"engines": {
"node": ">=22.11"
}
}