-
Notifications
You must be signed in to change notification settings - Fork 117
Expand file tree
/
Copy pathpackage.json
More file actions
72 lines (72 loc) · 1.94 KB
/
package.json
File metadata and controls
72 lines (72 loc) · 1.94 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
{
"name": "@rnx-kit/metro-service",
"version": "4.0.2",
"description": "Metro service for bundling and bundle-serving",
"homepage": "https://github.com/microsoft/rnx-kit/tree/main/packages/metro-service#readme",
"license": "MIT",
"author": {
"name": "Microsoft Open Source",
"email": "microsoftopensource@users.noreply.github.com"
},
"files": [
"lib/**/*.d.ts",
"lib/**/*.js"
],
"main": "lib/index.js",
"types": "lib/index.d.ts",
"repository": {
"type": "git",
"url": "https://github.com/microsoft/rnx-kit",
"directory": "packages/metro-service"
},
"scripts": {
"prepare": "node copy-assets-registry.mjs",
"build": "rnx-kit-scripts build",
"format": "rnx-kit-scripts format",
"lint": "rnx-kit-scripts lint",
"test": "rnx-kit-scripts test"
},
"dependencies": {
"@rnx-kit/console": "^2.0.0",
"@rnx-kit/tools-node": "^3.0.0",
"@rnx-kit/tools-react-native": "^2.0.0",
"node-fetch": "^2.6.7"
},
"peerDependencies": {
"@office-iss/react-native-win32": "*",
"@react-native/metro-config": "*",
"metro-react-native-babel-transformer": ">=0.66.1"
},
"peerDependenciesMeta": {
"@office-iss/react-native-win32": {
"optional": true
},
"@react-native/metro-config": {
"optional": true
},
"metro-react-native-babel-transformer": {
"optional": true
}
},
"devDependencies": {
"@react-native-community/cli-types": "^15.0.0",
"@react-native/assets-registry": "^0.76.0",
"@rnx-kit/eslint-config": "*",
"@rnx-kit/scripts": "*",
"@rnx-kit/tsconfig": "*",
"@types/node": "^20.0.0",
"@types/node-fetch": "^2.6.5",
"eslint": "^9.0.0",
"flow-remove-types": "~2.259.0",
"metro": "^0.81.0",
"metro-config": "^0.81.0",
"metro-core": "^0.81.0",
"metro-resolver": "^0.81.0",
"metro-runtime": "^0.81.0",
"prettier": "^3.0.0",
"typescript": "^5.0.0"
},
"engines": {
"node": ">=16.17"
}
}