-
-
Notifications
You must be signed in to change notification settings - Fork 404
Expand file tree
/
Copy pathpackage.json
More file actions
105 lines (105 loc) · 2.78 KB
/
package.json
File metadata and controls
105 lines (105 loc) · 2.78 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
105
{
"name": "@module-federation/metro",
"version": "2.0.1",
"description": "Module Federation for Metro bundler",
"keywords": [
"module-federation",
"metro",
"react-native"
],
"type": "commonjs",
"license": "MIT",
"contributors": [
"Jakub Romańczyk <j.romanczyk@gmail.com> (https://github.com/jbroma)",
"Kacper Wiszczuk <kacperwiszczuk@gmail.com> (https://github.com/esemesek)"
],
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
},
"repository": {
"type": "git",
"url": "git+https://github.com/module-federation/core.git",
"directory": "packages/metro-core"
},
"files": [
"dist/",
"babel-plugin/",
"bootstrap/"
],
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.mjs",
"require": "./dist/index.js",
"default": "./dist/index.js"
},
"./commands": {
"types": "./dist/commands/index.d.ts",
"import": "./dist/commands/index.mjs",
"require": "./dist/commands/index.js",
"default": "./dist/commands/index.js"
},
"./types": {
"types": "./dist/types.d.ts",
"import": "./dist/types.mjs",
"require": "./dist/types.js",
"default": "./dist/types.js"
},
"./babel-plugin": "./babel-plugin/index.js",
"./babel-plugin/*": "./babel-plugin/*.js",
"./bootstrap": {
"default": "./dist/modules/asyncStartup.tsx"
}
},
"scripts": {
"build": "rslib build",
"test": "vitest run --config vitest.config.mts",
"test:watch": "vitest --config vitest.config.mts",
"typecheck": "tsc --noEmit"
},
"dependencies": {
"@expo/metro-runtime": "^5.0.4",
"@module-federation/dts-plugin": "workspace:*",
"@module-federation/runtime": "workspace:*",
"@module-federation/sdk": "workspace:*"
},
"peerDependencies": {
"@babel/types": "^7.25.0",
"metro": "^0.82.1",
"metro-config": "^0.82.1",
"metro-file-map": "^0.82.1",
"metro-resolver": "^0.82.1",
"metro-source-map": "^0.82.1",
"react": ">=19.0.0",
"react-native": ">=0.79.0"
},
"peerDependenciesMeta": {
"react": {
"optional": true
},
"react-native": {
"optional": true
}
},
"devDependencies": {
"@rslib/core": "^0.10.0",
"@typescript-eslint/eslint-plugin": "8.54.0",
"@typescript-eslint/parser": "8.54.0",
"@types/node": "^20.19.5",
"@types/react": "^19.1.0",
"memfs": "4.46.0",
"metro": "^0.82.1",
"metro-config": "^0.82.1",
"metro-file-map": "^0.82.1",
"metro-resolver": "^0.82.1",
"metro-source-map": "^0.82.1",
"react": "19.1.0",
"react-native": "0.80.0",
"ts-node": "^10.9.2",
"typescript": "^5.8.3"
}
}