forked from kdrag0n/adevtool
-
Notifications
You must be signed in to change notification settings - Fork 18
/
package.json
87 lines (87 loc) · 2.27 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
{
"name": "adevtool",
"description": "Android device support and bringup tool.",
"version": "1.0.0",
"author": "Danny Lin @kdrag0n",
"bin": {
"adevtool": "./bin/run"
},
"bugs": "https://github.com/kdrag0n/adevtool/issues",
"dependencies": {
"@oclif/core": "^4.0.8",
"@oclif/plugin-help": "^6.2.4",
"chalk": "^4.1.2",
"cli-progress": "^3.12.0",
"hasha": "^5.2.2",
"jsdom": "^24.1.0",
"lodash": "^4.17.21",
"node-fetch": "^2.6.13",
"ora": "5.4.1",
"protobufjs": "^7.3.2",
"smart-buffer": "^4.2.0",
"ts-proto": "^1.181.0",
"unzipit": "^1.4.3",
"xml2js": "^0.6.2",
"yaml": "^1.10.2",
"yauzl-promise": "^4.0.0"
},
"devDependencies": {
"@types/chai": "^4.3.16",
"@types/cli-progress": "^3.11.5",
"@types/jsdom": "^21.1.7",
"@types/lodash": "^4.17.6",
"@types/mocha": "^10.0.7",
"@types/node": "^20.14.9",
"@types/node-fetch": "^2.6.11",
"@types/xml2js": "^0.4.14",
"@types/yauzl-promise": "^4.0.1",
"@typescript-eslint/eslint-plugin": "^7.15.0",
"@typescript-eslint/parser": "^7.15.0",
"chai": "^5.1.1",
"eslint": "^8.56.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-prettier": "^5.1.3",
"oclif": "^4.13.12",
"prettier": "^3.3.2",
"ts-node": "^10.9.2",
"typescript": "^5.5.3"
},
"engines": {
"node": ">=18.0.0"
},
"files": [
"/bin",
"/lib",
"/npm-shrinkwrap.json",
"/oclif.manifest.json"
],
"homepage": "https://github.com/kdrag0n/adevtool",
"keywords": [
"android",
"device",
"automation"
],
"license": "MIT",
"main": "lib/index.js",
"oclif": {
"commands": "./lib/commands",
"bin": "adevtool",
"dirname": "adevtool",
"plugins": [
"@oclif/plugin-help"
]
},
"repository": "kdrag0n/adevtool",
"scripts": {
"build": "rm -rf lib && tsc -b",
"postpack": "rm -f oclif.manifest.json",
"posttest": "eslint . --ext .ts --config .eslintrc",
"prepack": "rm -rf lib && tsc -b && oclif manifest && oclif readme",
"version": "oclif readme && git add README.md",
"format": "prettier --write 'src/**/*.ts'",
"lint": "eslint --fix 'src/**/*.ts'"
},
"types": "lib/index.d.ts"
}