-
Notifications
You must be signed in to change notification settings - Fork 155
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.11 KB
/
package.json
File metadata and controls
48 lines (48 loc) · 1.11 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
{
"name": "@callstack/repack-plugin-expo-modules",
"version": "5.2.5",
"description": "A plugin for @callstack/repack that integrates Expo Modules",
"author": "Jakub Romańczyk <jakub.romanczyk@callstack.com>",
"license": "MIT",
"homepage": "https://github.com/callstack/repack",
"repository": "github:callstack/repack",
"type": "commonjs",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": ["dist"],
"exports": {
".": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
}
},
"keywords": [
"repack",
"re.pack",
"plugin",
"repack-plugin",
"expo-modules",
"expo"
],
"publishConfig": {
"registry": "https://registry.npmjs.org/",
"access": "public"
},
"engineStrict": true,
"engines": {
"node": ">=18"
},
"peerDependencies": {
"@callstack/repack": "workspace:*"
},
"devDependencies": {
"@callstack/repack": "workspace:*",
"@rspack/core": "catalog:",
"@types/node": "catalog:",
"webpack": "catalog:"
},
"scripts": {
"build": "tsc -p tsconfig.build.json",
"typecheck": "tsc --noEmit"
}
}