-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 869 Bytes
/
package.json
File metadata and controls
38 lines (38 loc) · 869 Bytes
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
{
"name": "embed-react-native-sdk",
"version": "5.0.2",
"description": "React Native SDK for Embedding TS",
"main": "dist/index.cjs.js",
"module": "dist/index.esm.js",
"types": "dist/index.d.ts",
"files": [
"dist/**/*"
],
"peerDependencies": {
"react": ">=16.8.0",
"react-native": ">=0.60.0"
},
"peerDependenciesMeta": {
"@types/react": {
"optional": true
},
"@types/react-native": {
"optional": true
}
},
"devDependencies": {
"@rollup/plugin-commonjs": "^28.0.2",
"@rollup/plugin-node-resolve": "^16.0.0",
"@rollup/plugin-typescript": "^12.1.2",
"rollup": "^4.32.0",
"rollup-plugin-dts": "^6.1.1",
"typescript": "^5.7.3"
},
"scripts": {
"build": "rollup -c"
},
"dependencies": {
"use-deep-compare-effect": "^1.8.1",
"react-native-webview": ">=11.0.0"
}
}