-
-
Notifications
You must be signed in to change notification settings - Fork 21
/
package.json
99 lines (99 loc) · 2.64 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
{
"name": "react-native-react-bridge",
"version": "0.12.3",
"description": "An easy way to integrate your React (or Preact/React Native Web) app into React Native app with WebView.",
"main": "lib/index.js",
"module": "lib/index.mjs",
"types": "lib/index.d.ts",
"exports": {
"./package.json": "./package.json",
".": {
"types": "./lib/index.d.ts",
"import": "./lib/index.mjs",
"default": "./lib/index.js"
},
"./lib/plugin": {
"default": "./lib/plugin/index.js"
},
"./lib/web": {
"types": "./lib/web/index.d.ts",
"import": "./lib/web/index.mjs",
"default": "./lib/web/index.js"
},
"./lib/web/preact": {
"types": "./lib/web/preact.d.ts",
"import": "./lib/web/preact.mjs",
"default": "./lib/web/preact.js"
}
},
"files": [
"lib"
],
"scripts": {
"build": "rollup -c",
"test": "vitest --run",
"tsc": "tsc -p . --noEmit",
"pree2e": "npm run build",
"e2e": "npx playwright test",
"typedoc": "typedoc",
"prepublishOnly": "npm run typedoc && rimraf lib && npm run build"
},
"dependencies": {
"@babel/core": "7.26.0",
"@babel/plugin-syntax-jsx": "7.25.9",
"@babel/traverse": "7.26.4",
"esbuild": "^0.24.0"
},
"devDependencies": {
"@playwright/test": "^1.43.1",
"@rollup/plugin-typescript": "^11.1.6",
"@testing-library/react": "^15.0.6",
"@types/babel__core": "^7.20.5",
"@types/babel__traverse": "^7.20.5",
"@types/node": "^20.12.2",
"@types/react": "^18.2.73",
"@types/react-dom": "^18.2.23",
"http-server": "^14.1.1",
"jsdom": "^24.0.0",
"preact": "^10.19.3",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-native": "0.74.1",
"react-native-web": "^0.19.11",
"react-native-webview": "11.26.1",
"rimraf": "^5.0.5",
"rollup": "^4.17.2",
"typedoc": "^0.27.0",
"typedoc-plugin-markdown": "^4.2.7",
"typescript": "^5.3.3",
"vitest": "^1.6.0"
},
"peerDependencies": {
"react": ">=16.14.0",
"react-native": ">=0.60.0",
"react-native-webview": ">=9.0.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/inokawa/react-native-react-bridge.git"
},
"keywords": [
"react",
"react-native",
"expo",
"react-dom",
"preact",
"react-native-web",
"metro",
"webview",
"html",
"react-hooks",
"webassembly"
],
"author": "inokawa <[email protected]> (https://github.com/inokawa/)",
"license": "MIT",
"bugs": {
"url": "https://github.com/inokawa/react-native-react-bridge/issues"
},
"homepage": "https://github.com/inokawa/react-native-react-bridge#readme"
}