-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
66 lines (66 loc) · 2.07 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
{
"name": "@renanmav/react-native-in-app-browser",
"version": "0.0.2",
"description": "In app browser module for react-native using SFSafariViewController, WKWebView & more, powered by Nitro",
"keywords": [
"react-native",
"in-app-browser",
"nitro",
"WKWebView",
"SFSafariViewController"
],
"homepage": "https://github.com/renanmav/react-native-in-app-browser#readme",
"bugs": {
"url": "https://github.com/renanmav/react-native-in-app-browser/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/renanmav/react-native-in-app-browser.git"
},
"license": "MIT",
"author": "Renan Mav <me@renanmav.com> (https://github.com/renanmav)",
"main": "lib/index",
"module": "lib/index",
"source": "src/index",
"react-native": "src/index",
"types": "lib/index.d.ts",
"scripts": {
"build": "tsc --noEmit false",
"clean": "rm -rf android/build node_modules/**/android/build lib",
"postinstall": "bun run build || exit 0;",
"lint": "eslint .",
"prepare": "husky",
"release": "semantic-release",
"specs": "bun run build && bun nitro-codegen --logLevel=\"debug\"",
"test": "echo \"Error: no tests setup\" && exit 1",
"typecheck": "tsc --noEmit"
},
"devDependencies": {
"@commitlint/cli": "^19.5.0",
"@commitlint/config-conventional": "^19.5.0",
"@react-native/eslint-config": "^0.75.2",
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/git": "^10.0.1",
"@semantic-release/npm": "^12.0.1",
"@types/jest": "^29.5.12",
"@types/react": "^18.3.4",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.2.1",
"husky": "^9.1.6",
"nitro-codegen": "*",
"prettier": "^3.3.3",
"react": "^18.3.1",
"react-native": "^0.75.2",
"react-native-nitro-modules": "*",
"semantic-release": "^24.1.3",
"sort-package-json": "^2.10.1",
"typescript": "<5.6.0"
},
"peerDependencies": {
"react": "*",
"react-native": "*",
"react-native-nitro-modules": "*"
},
"packageManager": "bun@1.1.30"
}