ya-webadb/libraries/adb/package.json
2024-08-12 12:02:52 +08:00

49 lines
1.5 KiB
JSON

{
"name": "@yume-chan/adb",
"version": "0.0.24",
"description": "TypeScript implementation of Android Debug Bridge (ADB) protocol.",
"keywords": [
"adb",
"android-phone"
],
"license": "MIT",
"author": {
"name": "Simon Chan",
"email": "cnsimonchan@live.com",
"url": "https://chensi.moe/blog"
},
"homepage": "https://github.com/yume-chan/ya-webadb/tree/main/libraries/adb#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/yume-chan/ya-webadb.git",
"directory": "libraries/adb"
},
"bugs": {
"url": "https://github.com/yume-chan/ya-webadb/issues"
},
"type": "module",
"main": "esm/index.js",
"types": "esm/index.d.ts",
"sideEffects": false,
"scripts": {
"build": "tsc -b tsconfig.build.json",
"lint": "run-eslint && prettier src/**/*.ts --write --tab-width 4",
"prepublishOnly": "npm run build",
"test": "run-test"
},
"dependencies": {
"@yume-chan/async": "^2.2.0",
"@yume-chan/event": "workspace:^0.0.24",
"@yume-chan/no-data-view": "workspace:^0.0.24",
"@yume-chan/stream-extra": "workspace:^0.0.24",
"@yume-chan/struct": "workspace:^0.0.24"
},
"devDependencies": {
"@types/node": "^22.2.0",
"@yume-chan/eslint-config": "workspace:^1.0.0",
"@yume-chan/test-runner": "workspace:^1.0.0",
"@yume-chan/tsconfig": "workspace:^1.0.0",
"prettier": "^3.3.3",
"typescript": "^5.5.4"
}
}