-
-
Notifications
You must be signed in to change notification settings - Fork 22
/
Copy pathpackage.json
45 lines (45 loc) · 1.04 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
{
"name": "react-native-bundle-splitter",
"author": "Kiryl Ziusko",
"version": "3.0.1",
"description": "Decrease your start up time and RAM memory consumption by an application via splitting JS bundle by components and navigation routes",
"repository": "https://github.com/kirillzyusko/react-native-bundle-splitter",
"homepage": "https://kirillzyusko.github.io/react-native-bundle-splitter/",
"main": "dist/index.js",
"license": "MIT",
"types": "dist/index.d.ts",
"scripts": {
"build": "tsc"
},
"devDependencies": {
"@types/react": "^16.6.1",
"@types/react-native": "^0.60.0",
"typescript": "3.6.3"
},
"peerDependencies": {
"react": "*",
"react-native": ">=0.59.1"
},
"keywords": [
"react",
"native",
"react-native",
"react-native-web",
"bundle",
"bundles",
"separate",
"separator",
"split",
"splitter",
"splitting",
"inline",
"require",
"RAM",
"js-bundle",
"lazy",
"loading",
"loadable",
"react-native-loadable",
"unbundle"
]
}