package.json 1.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  1. {
  2. "name": "@yume-chan/adb",
  3. "version": "0.0.17",
  4. "description": "TypeScript implementation of Android Debug Bridge (ADB) protocol.",
  5. "keywords": [
  6. "adb",
  7. "android-phone"
  8. ],
  9. "license": "MIT",
  10. "author": {
  11. "name": "Simon Chan",
  12. "email": "cnsimonchan@live.com",
  13. "url": "https://chensi.moe/blog"
  14. },
  15. "homepage": "https://github.com/yume-chan/ya-webadb/tree/main/libraries/adb#readme",
  16. "repository": {
  17. "type": "git",
  18. "url": "git+https://github.com/yume-chan/ya-webadb.git",
  19. "directory": "libraries/adb"
  20. },
  21. "bugs": {
  22. "url": "https://github.com/yume-chan/ya-webadb/issues"
  23. },
  24. "type": "module",
  25. "main": "esm/index.js",
  26. "types": "esm/index.d.ts",
  27. "scripts": {
  28. "build": "tsc -b tsconfig.build.json",
  29. "build:watch": "tsc -b tsconfig.build.json",
  30. "test": "cross-env NODE_OPTIONS=--experimental-vm-modules jest --coverage",
  31. "prepublishOnly": "npm run build"
  32. },
  33. "dependencies": {
  34. "@yume-chan/async": "^2.2.0",
  35. "@yume-chan/dataview-bigint-polyfill": "workspace:^0.0.17",
  36. "@yume-chan/event": "workspace:^0.0.17",
  37. "@yume-chan/stream-extra": "workspace:^0.0.17",
  38. "@yume-chan/struct": "workspace:^0.0.17",
  39. "tslib": "^2.4.1"
  40. },
  41. "devDependencies": {
  42. "@jest/globals": "^29.3.1",
  43. "@types/node": "^18.11.9",
  44. "@yume-chan/ts-package-builder": "workspace:^1.0.0",
  45. "cross-env": "^7.0.3",
  46. "jest": "^29.3.1",
  47. "ts-jest": "^29.0.3",
  48. "typescript": "^4.8.4"
  49. }
  50. }