@u4/adbkit
Version:
A Typescript client for the Android Debug Bridge.
102 lines • 2.75 kB
JSON
{
"name": "@u4/adbkit",
"version": "4.1.20",
"description": "A Typescript client for the Android Debug Bridge.",
"keywords": [
"adb",
"adbkit",
"android",
"logcat",
"typescript",
"monkey",
"scrcpy"
],
"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://urielch.github.io/"
},
"contributors": [
{
"name": "uriel chemouni",
"email": "uchemouni@gmail.com",
"url": "https://urielch.github.io/"
}
],
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"repository": {
"type": "git",
"url": "https://github.com/UrielCh/adbkit.git"
},
"dependencies": {
"@u4/adbkit-logcat": "2.1.2",
"@u4/adbkit-monkey": "^1.0.5",
"@u4/minicap-prebuilt": "^1.0.0",
"@xmldom/xmldom": "^0.8.10",
"commander": "12.1.0",
"debug": "~4.3.7",
"get-port": "7.1.0",
"node-forge": "^1.3.1",
"promise-duplex": "^8.0.0",
"promise-readable": "^8.0.1",
"protobufjs": "^7.4.0",
"xpath": "^0.0.34"
},
"devDependencies": {
"@types/debug": "^4.1.12",
"@types/mocha": "^10.0.9",
"@types/node": "^20.11.7",
"@types/node-forge": "^1.3.11",
"@types/sinon": "^17.0.3",
"@types/sinon-chai": "^4.0.0",
"@typescript-eslint/eslint-plugin": "^8.13.0",
"@typescript-eslint/parser": "^8.13.0",
"chai": "~5.1.2",
"eslint": "^8.56.0",
"mocha": "~10.8.2",
"picocolors": "^1.1.1",
"prettier": "^3.3.3",
"rimraf": "^6.0.1",
"sinon": "~19.0.2",
"sinon-chai": "~4.0.0",
"tsx": "^4.19.2",
"typedoc": "^0.26.11",
"typedoc-plugin-rename-defaults": "^0.7.1",
"typescript": "5.6.3",
"why-is-node-running": "^3.2.1"
},
"engines": {
"node": ">= 12.20.0"
},
"files": [
"dist",
"bin"
],
"optionalDependencies": {
"@devicefarmer/minicap-prebuilt": "^2.7.2"
},
"scripts": {
"clean": "rimraf dist",
"keycode": "ts-node tasks/keycode.ts",
"servicemap": "ts-node tasks/servicemap.ts",
"prepublish": "npm run clean && npm run compile",
"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",
"ncu": "npx npm-check-updates -i"
}
}