ya-webadb/apps/cli/package.json
2024-04-05 19:39:49 +08:00

54 lines
1.6 KiB
JSON

{
"name": "@yume-chan/adb-cli",
"private": true,
"version": "0.0.19",
"description": "Re-implement `adb`",
"keywords": [
"adb",
"cli"
],
"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/apps/adb-cli#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/yume-chan/ya-webadb.git",
"directory": "apps/adb-cli"
},
"bugs": {
"url": "https://github.com/yume-chan/ya-webadb/issues"
},
"type": "module",
"main": "esm/index.js",
"types": "esm/index.d.ts",
"scripts": {
"build": "tsc -b tsconfig.build.json",
"build:watch": "tsc -b tsconfig.build.json",
"lint": "eslint src/**/*.ts --fix"
},
"bin": {
"tango-cli": "esm/index.js"
},
"dependencies": {
"@yume-chan/adb": "workspace:^0.0.23",
"@yume-chan/adb-server-node-tcp": "workspace:^0.0.23",
"@yume-chan/android-bin": "workspace:^0.0.23",
"@yume-chan/stream-extra": "workspace:^0.0.23",
"commander": "^12.0.0",
"source-map-support": "^0.5.21",
"tslib": "^2.6.2"
},
"devDependencies": {
"@types/node": "^20.12.4",
"@yume-chan/eslint-config": "workspace:^1.0.0",
"@yume-chan/tsconfig": "workspace:^1.0.0",
"eslint": "^8.57.0",
"jest": "^30.0.0-alpha.3",
"prettier": "^3.2.5",
"typescript": "^5.4.4"
}
}