-
Notifications
You must be signed in to change notification settings - Fork 26
/
package.json
72 lines (72 loc) · 1.98 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
{
"name": "react-native-decompiler",
"version": "0.2.4",
"description": "react native decompile apk and ipa(soon)",
"main": "./out/index.js",
"author": "richardfuca",
"license": "AGPL-3.0-or-later",
"bin": {
"react-native-decompiler": "./out/main.js",
"rnd": "./out/main.js"
},
"files": [
"out"
],
"scripts": {
"build": "tsc",
"start": "npm i && ts-node ./src/main.ts",
"lint": "eslint ./src",
"postinstall_": "patch-package"
},
"dependencies": {
"@babel/generator": "7.12.11",
"@babel/parser": "7.12.11",
"@babel/traverse": "7.12.12",
"@babel/types": "7.12.11",
"chalk": "4.1.0",
"cli-progress": "3.8.2",
"command-line-args": "5.0.2",
"debug": "4.3.1",
"eslint": "7.18.0",
"eslint-plugin-react": "7.21.5",
"fs-extra": "9.0.1",
"prettier": "2.2.1"
},
"devDependencies": {
"@types/babel__generator": "7.6.2",
"@types/babel__traverse": "7.11.0",
"@types/cli-progress": "3.8.0",
"@types/command-line-args": "5.0.0",
"@types/debug": "4.1.5",
"@types/eslint": "7.2.6",
"@types/fs-extra": "9.0.6",
"@types/prettier": "2.1.6",
"@typescript-eslint/eslint-plugin": "4.11.0",
"@typescript-eslint/parser": "4.11.0",
"eslint-config-airbnb-typescript": "12.0.0",
"eslint-plugin-import": "2.22.1",
"eslint-plugin-jsx-a11y": "6.4.1",
"eslint-plugin-node": "11.1.0",
"eslint-plugin-react-hooks": "4.2.0",
"jest": "26.6.3",
"patch-package": "^6.4.7",
"ts-node": "10.9.1",
"typescript": "4.1.3"
},
"bugs": {
"url": "https://github.com/nomi9995/react-native-decompiler/issues"
},
"homepage": "https://github.com/nomi9995/react-native-decompiler#readme",
"contributors": [
"Numan <[email protected]> (https://github.com/nomi9995)",
"Richard <[email protected]> (https://github.com/richardfuca)"
],
"keywords": [
"react-native",
"android",
"decompile",
"decompiler",
"index.android.bundle",
"apk"
]
}