package.json 1.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. {
  2. "name": "@yume-chan/adb-backend-webusb",
  3. "version": "0.0.17",
  4. "description": "Backend for `@yume-chan/adb` using WebUSB API.",
  5. "keywords": [
  6. "webusb",
  7. "adb"
  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-backend-webusb#readme",
  16. "repository": {
  17. "type": "git",
  18. "url": "git+https://github.com/yume-chan/ya-webadb.git",
  19. "directory": "libraries/adb-backend-webusb"
  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": "build-ts-package",
  29. "build:watch": "build-ts-package --incremental",
  30. "//test": "jest --coverage",
  31. "prepublishOnly": "npm run build"
  32. },
  33. "dependencies": {
  34. "@types/w3c-web-usb": "^1.0.6",
  35. "@yume-chan/adb": "workspace:^0.0.17",
  36. "@yume-chan/stream-extra": "workspace:^0.0.17",
  37. "@yume-chan/struct": "workspace:^0.0.17",
  38. "tslib": "^2.4.1"
  39. },
  40. "devDependencies": {
  41. "@yume-chan/ts-package-builder": "workspace:^1.0.0",
  42. "jest": "^29.3.1",
  43. "typescript": "^4.8.4"
  44. }
  45. }