forked from react-native-webview/react-native-webview
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
101 lines (101 loc) · 3.16 KB
/
package.json
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
{
"name": "react-native-webview",
"description": "React Native WebView component for iOS, Android, macOS, and Windows",
"main": "index.js",
"main-internal": "src/index.ts",
"react-native": "src/index.ts",
"typings": "index.d.ts",
"author": "Jamon Holmgren <[email protected]>",
"contributors": [
"Thibault Malbranche <[email protected]>"
],
"license": "MIT",
"version": "13.12.2",
"homepage": "https://github.com/react-native-webview/react-native-webview#readme",
"scripts": {
"android": "react-native run-android",
"ios": "react-native run-ios",
"macos": "react-native run-macos --scheme WebviewExample --project-path example/macos",
"start": "react-native start",
"windows": "install-windows-test-app --project-directory example/windows && react-native run-windows --root example --arch x64",
"ci": "CI=true && yarn lint",
"ci:publish": "yarn semantic-release",
"lint": "yarn tsc --noEmit && yarn eslint ./src --ext .ts,.tsx,.js,.jsx",
"build": "babel --extensions \".ts,.tsx\" --out-dir lib src",
"prepare:types": "tsc --noEmit false --emitDeclarationOnly --declaration --rootDir src --outDir lib",
"prepare": "yarn prepare:types && yarn build",
"appium": "appium",
"test:windows": "yarn jest --setupFiles=./jest-setups/jest.setup.js",
"add:macos": "yarn add [email protected]"
},
"rn-docs": {
"title": "Webview",
"type": "Component"
},
"peerDependencies": {
"react": "*",
"react-native": "*"
},
"dependencies": {
"escape-string-regexp": "^4.0.0",
"invariant": "2.2.4"
},
"devDependencies": {
"@babel/cli": "^7.20.0",
"@babel/core": "^7.20.0",
"@babel/runtime": "^7.20.0",
"@callstack/react-native-visionos": "0.73.8",
"@react-native/babel-preset": "0.73.21",
"@react-native/eslint-config": "0.73.2",
"@react-native/metro-config": "0.73.5",
"@react-native/typescript-config": "0.73.1",
"@rnx-kit/metro-config": "1.3.15",
"@semantic-release/git": "7.0.16",
"@types/invariant": "^2.2.30",
"@types/jest": "^29.5.12",
"@types/react": "18.2.61",
"@types/selenium-webdriver": "4.0.9",
"appium": "1.17.0",
"eslint": "8.57.0",
"jest": "^29.6.3",
"prettier": "2.8.8",
"react": "18.2.0",
"react-native": "0.73.5",
"react-native-macos": "0.73.17",
"react-native-test-app": "3.7.2",
"react-native-windows": "0.73.8",
"selenium-appium": "1.0.2",
"selenium-webdriver": "4.0.0-alpha.7",
"semantic-release": "15.13.24",
"typescript": "5.1.3",
"winappdriver": "^0.0.7"
},
"repository": {
"type": "git",
"url": "https://github.com/react-native-webview/react-native-webview.git"
},
"files": [
"android/src",
"android/build.gradle",
"android/gradle.properties",
"apple",
"ios",
"macos",
"windows",
"lib",
"src",
"index.js",
"index.d.ts",
"react-native-webview.podspec",
"react-native.config.js"
],
"codegenConfig": {
"name": "RNCWebViewSpec",
"type": "all",
"jsSrcsDir": "./src",
"android": {
"javaPackageName": "com.reactnativecommunity.webview"
}
},
"packageManager": "[email protected]"
}