forked from DeviceFarmer/adbkit
-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathpackage.json
More file actions
111 lines (111 loc) · 3.26 KB
/
package.json
File metadata and controls
111 lines (111 loc) · 3.26 KB
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
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
{
"name": "@u4/adbkit",
"version": "5.1.7",
"description": "A Typescript client for the Android Debug Bridge.",
"type": "module",
"keywords": [
"adb",
"adbkit",
"android",
"logcat",
"typescript",
"monkey",
"scrcpy"
],
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
}
},
"bin": {
"adbkit": "./bin/adbkit"
},
"bugs": {
"url": "https://github.com/UrielCh/adbkit/issues"
},
"license": "Apache-2.0",
"funding": "https://github.com/sponsors/urielch",
"author": {
"name": "openstf",
"email": "contact@openstf.io",
"url": "https://uriel.ovh"
},
"contributors": [
{
"name": "uriel chemouni",
"email": "uchemouni@gmail.com",
"url": "https://uriel.ovh"
}
],
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"repository": {
"type": "git",
"url": "https://github.com/UrielCh/adbkit.git"
},
"scripts": {
"clean": "rimraf dist",
"keycode": "tsx tasks/keycode.ts",
"servicemap": "tsx tasks/servicemap.ts",
"prepublish": "npm run clean && npm run compile",
"docker-clean": "npx --yes modclean -r",
"docs": "typedoc --entryPointStrategy expand",
"compile": "tsc -p .",
"build": "tsc -p .",
"lint": "eslint ./ --ext .ts",
"format": "eslint ./ --ext .ts --fix",
"test": "mocha -r tsx --reporter spec --colors test/**/*.ts",
"test2": "mocha -r tsx --reporter spec --colors test/adb/thirdparty/**/*.ts",
"test3": "mocha -r tsx --reporter spec --colors test/adb/command/host-transport/serviceCall.ts",
"typetest": "npx --yes @arethetypeswrong/cli --pack .",
"ncu": "npx npm-check-updates -i"
},
"dependencies": {
"@u4/adbkit-logcat": "2.1.2",
"@u4/adbkit-monkey": "^1.0.5",
"@u4/minicap-prebuilt": "^1.1.2",
"@xmldom/xmldom": "^0.9.8",
"commander": "14.0.2",
"debug": "~4.4.3",
"get-port": "7.1.0",
"node-forge": "^1.3.3",
"promise-duplex": "^8.0.0",
"promise-readable": "^8.0.1",
"protobufjs": "^7.5.4",
"xpath": "^0.0.34"
},
"devDependencies": {
"@jest/globals": "^30.2.0",
"@types/debug": "^4.1.12",
"@types/jest": "^30.0.0",
"@types/mocha": "^10.0.10",
"@types/node": "^25.0.3",
"@types/node-forge": "^1.3.14",
"@types/sinon": "^21.0.0",
"@types/sinon-chai": "^4.0.0",
"@typescript-eslint/eslint-plugin": "^8.50.0",
"@typescript-eslint/parser": "^8.50.0",
"chai": "~6.2.1",
"eslint": "^9.39.2",
"jest": "^30.2.0",
"mocha": "~11.7.5",
"picocolors": "^1.1.1",
"prettier": "^3.7.4",
"rimraf": "^6.1.2",
"sinon": "~21.0.0",
"sinon-chai": "~4.0.1",
"tsx": "^4.21.0",
"typedoc": "^0.28.15",
"typedoc-plugin-rename-defaults": "^0.7.3",
"typescript": "5.9.3",
"why-is-node-running": "^3.2.2"
},
"engines": {
"node": ">= 12.20.0"
},
"files": [
"dist",
"bin"
]
}