-
Notifications
You must be signed in to change notification settings - Fork 156
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.38 KB
/
package.json
File metadata and controls
58 lines (58 loc) · 1.38 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
{
"name": "@callstack/repack-plugin-reanimated",
"version": "5.2.5",
"description": "A plugin for @callstack/repack that integrates react-native-reanimated",
"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", "loader"],
"exports": {
".": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
},
"./loader": {
"types": "./loader/index.d.ts",
"default": "./loader/index.js"
}
},
"keywords": [
"repack",
"re.pack",
"plugin",
"repack-plugin",
"reanimated",
"react-native-reanimated"
],
"publishConfig": {
"registry": "https://registry.npmjs.org/",
"access": "public"
},
"engineStrict": true,
"engines": {
"node": ">=18"
},
"dependencies": {
"semver": "^7.7.2"
},
"peerDependencies": {
"@babel/core": "^7.20",
"@callstack/repack": "workspace:*"
},
"devDependencies": {
"@callstack/repack": "workspace:*",
"@rspack/core": "catalog:",
"@types/babel__core": "7.20.5",
"@types/node": "catalog:",
"@types/semver": "^7.7.0",
"webpack": "catalog:"
},
"scripts": {
"build": "tsc -p tsconfig.build.json",
"typecheck": "tsc --noEmit"
}
}