UNPKG

3.23 kBJSONView Raw
1{
2 "name": "react-native-webview",
3 "description": "React Native WebView component for iOS, Android, macOS, and Windows",
4 "main": "index.js",
5 "main-internal": "src/index.ts",
6 "react-native": "src/index.ts",
7 "typings": "index.d.ts",
8 "author": "Jamon Holmgren <jamon@infinite.red>",
9 "contributors": [
10 "Thibault Malbranche <malbranche.thibault@gmail.com>"
11 ],
12 "license": "MIT",
13 "version": "13.12.5",
14 "homepage": "https://github.com/react-native-webview/react-native-webview#readme",
15 "scripts": {
16 "android": "react-native run-android",
17 "ios": "react-native run-ios",
18 "macos": "react-native run-macos --scheme WebviewExample --project-path example/macos",
19 "start": "react-native start",
20 "windows": "install-windows-test-app --project-directory example/windows && react-native run-windows --root example --arch x64",
21 "ci": "CI=true && yarn lint",
22 "ci:publish": "yarn semantic-release",
23 "lint": "yarn tsc --noEmit && yarn eslint ./src --ext .ts,.tsx,.js,.jsx",
24 "build": "babel --extensions \".ts,.tsx\" --out-dir lib src",
25 "prepare:types": "tsc --noEmit false --emitDeclarationOnly --declaration --rootDir src --outDir lib",
26 "prepare": "yarn prepare:types && yarn build",
27 "appium": "appium",
28 "test:windows": "yarn jest --setupFiles=./jest-setups/jest.setup.js",
29 "add:macos": "yarn add react-native-macos@0.73.17"
30 },
31 "rn-docs": {
32 "title": "Webview",
33 "type": "Component"
34 },
35 "peerDependencies": {
36 "react": "*",
37 "react-native": "*"
38 },
39 "dependencies": {
40 "escape-string-regexp": "^4.0.0",
41 "invariant": "2.2.4"
42 },
43 "devDependencies": {
44 "@babel/cli": "^7.20.0",
45 "@babel/core": "^7.20.0",
46 "@babel/runtime": "^7.20.0",
47 "@callstack/react-native-visionos": "0.73.8",
48 "@react-native/babel-preset": "0.73.21",
49 "@react-native/eslint-config": "0.73.2",
50 "@react-native/metro-config": "0.73.5",
51 "@react-native/typescript-config": "0.73.1",
52 "@rnx-kit/metro-config": "1.3.15",
53 "@semantic-release/git": "7.0.16",
54 "@types/invariant": "^2.2.30",
55 "@types/jest": "^29.5.12",
56 "@types/react": "18.2.61",
57 "@types/selenium-webdriver": "4.0.9",
58 "appium": "1.17.0",
59 "eslint": "8.57.0",
60 "jest": "^29.6.3",
61 "prettier": "2.8.8",
62 "react": "18.2.0",
63 "react-native": "0.73.5",
64 "react-native-macos": "0.73.17",
65 "react-native-test-app": "3.7.2",
66 "react-native-windows": "0.73.8",
67 "selenium-appium": "1.0.2",
68 "selenium-webdriver": "4.0.0-alpha.7",
69 "semantic-release": "15.13.24",
70 "typescript": "5.1.3",
71 "winappdriver": "^0.0.7"
72 },
73 "repository": {
74 "type": "git",
75 "url": "https://github.com/react-native-webview/react-native-webview.git"
76 },
77 "files": [
78 "android/src",
79 "android/build.gradle",
80 "android/gradle.properties",
81 "apple",
82 "ios",
83 "macos",
84 "windows",
85 "lib",
86 "src",
87 "index.js",
88 "index.d.ts",
89 "react-native-webview.podspec",
90 "react-native.config.js"
91 ],
92 "codegenConfig": {
93 "name": "RNCWebViewSpec",
94 "type": "all",
95 "jsSrcsDir": "./src",
96 "android": {
97 "javaPackageName": "com.reactnativecommunity.webview"
98 }
99 },
100 "packageManager": "yarn@1.22.19"
101}