-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
69 lines (69 loc) · 2.26 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
{
"name": "react-native-webview-comlink",
"version": "0.7.6",
"description": "Add JavaScript interface for react-native-webview, based on Comlink",
"main": "lib/index.js",
"files": [
"lib/"
],
"scripts": {
"clean": "rm -rf lib",
"build": "npm run clean && npm run tsc && npm run rollup",
"tsc": "tsc -d",
"rollup": "rollup --config --compact",
"release": "npm run build && standard-version && git push --follow-tags origin master && npm publish",
"test": "jest",
"start": "concurrently npm:start:tsc npm:start:rollup npm:start:example-web npm:start:msf-native npm:start:example-native --raw",
"start:tsc": "npm run tsc -- --watch",
"start:rollup": "npm run rollup -- --watch",
"start:msf-native": "msf --mode update lib examples/native/node_modules/react-native-webview-comlink/lib",
"start:example-web": "cd examples/web && npm start",
"start:example-native": "cd examples/native && npm start"
},
"repository": {
"type": "git",
"url": "git+https://github.com/rocwind/react-native-webview-comlink.git"
},
"keywords": [
"comlink",
"rpc",
"react-native",
"webview",
"javascriptinterface"
],
"author": "Roc",
"license": "MIT",
"bugs": {
"url": "https://github.com/rocwind/react-native-webview-comlink/issues"
},
"homepage": "https://github.com/rocwind/react-native-webview-comlink#readme",
"dependencies": {
"hoist-non-react-statics": "^3.3.2"
},
"devDependencies": {
"@babel/core": "7.26.0",
"@babel/plugin-transform-runtime": "7.25.9",
"@babel/preset-env": "7.26.0",
"@babel/runtime": "7.26.0",
"@rollup/plugin-babel": "6.0.4",
"@rollup/plugin-commonjs": "28.0.2",
"@rollup/plugin-node-resolve": "16.0.0",
"@types/hoist-non-react-statics": "3.3.6",
"@types/jest": "29.5.14",
"@types/react": "18.3.18",
"@types/react-native": "0.73.0",
"concurrently": "9.1.2",
"jest": "29.7.0",
"metro-react-native-babel-preset": "0.77.0",
"msf-cli": "1.2.5",
"react": "17.0.1",
"react-native": "0.76.5",
"react-native-webview": "13.12.5",
"rollup": "2.79.2",
"rollup-plugin-cleanup": "3.2.1",
"rollup-plugin-terser": "7.0.2",
"standard-version": "9.5.0",
"ts-jest": "29.2.5",
"typescript": "5.7.2"
}
}