-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
58 lines (58 loc) · 1.63 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
{
"name": "react-native-webview-callback",
"version": "0.0.5",
"description": "A lightweight tool library for connecting React Native and webview, providing communication and success and failure callback methods",
"main": "./dist/index.js",
"module": "./dist/index.esm.js",
"umd": "./dist/index.umd.js",
"types": "./dist/types/index.d.ts",
"scripts": {
"clean:dist": "rimraf dist",
"build:types": "npm run clean:dist && tsc -b ./tsconfig.types.json",
"build": "npm run build:types && rollup -c",
"test": "node test/test.js",
"pretest": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/liutaohz/react-native-webview-callback.git"
},
"keywords": [
"React",
"Native",
"webview",
"callback",
"promise",
"h5",
"communication"
],
"author": "liutaohangzhou@163.com",
"license": "MIT",
"bugs": {
"url": "https://github.com/liutaohz/react-native-webview-callback/issues"
},
"homepage": "https://github.com/liutaohz/react-native-webview-callback#readme",
"devDependencies": {
"@babel/plugin-transform-runtime": "^7.22.15",
"@babel/preset-env": "^7.22.20",
"@rollup/plugin-babel": "^6.0.4",
"@rollup/plugin-commonjs": "^25.0.5",
"@rollup/plugin-node-resolve": "^15.2.3",
"@types/events": "^3.0.1",
"@types/react": "^18.2.27",
"rimraf": "^5.0.5",
"rollup": "^2.79.1",
"rollup-plugin-terser": "^7.0.2",
"rollup-plugin-typescript2": "^0.36.0",
"typescript": "^5.2.2"
},
"files": [
"dist"
],
"dependencies": {
"events": "^3.3.0"
},
"peerDependencies": {
"react": ">16.8.3"
}
}