package.json 1.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566
  1. {
  2. "name": "@yume-chan/scrcpy",
  3. "version": "0.0.17",
  4. "description": "TypeScript implementation of Scrcpy.",
  5. "keywords": [
  6. "adb",
  7. "android-phone",
  8. "scrcpy"
  9. ],
  10. "license": "MIT",
  11. "author": {
  12. "name": "Simon Chan",
  13. "email": "cnsimonchan@live.com",
  14. "url": "https://chensi.moe/blog"
  15. },
  16. "homepage": "https://github.com/yume-chan/ya-webadb/tree/main/packages/scrcpy#readme",
  17. "repository": {
  18. "type": "git",
  19. "url": "git+https://github.com/yume-chan/ya-webadb.git",
  20. "directory": "packages/scrcpy"
  21. },
  22. "bugs": {
  23. "url": "https://github.com/yume-chan/ya-webadb/issues"
  24. },
  25. "bin": {
  26. "fetch-scrcpy-server": "scripts/fetch-server.cjs"
  27. },
  28. "type": "module",
  29. "main": "esm/index.js",
  30. "types": "esm/index.d.ts",
  31. "scripts": {
  32. "build": "tsc -b tsconfig.build.json",
  33. "build:watch": "tsc -b tsconfig.build.json",
  34. "test": "cross-env NODE_OPTIONS=--experimental-vm-modules jest --coverage",
  35. "prepublishOnly": "npm run build"
  36. },
  37. "dependencies": {
  38. "@yume-chan/async": "^2.2.0",
  39. "@yume-chan/event": "workspace:^0.0.17",
  40. "@yume-chan/stream-extra": "workspace:^0.0.17",
  41. "@yume-chan/struct": "workspace:^0.0.17",
  42. "tslib": "^2.4.1"
  43. },
  44. "devDependencies": {
  45. "@jest/globals": "^29.3.1",
  46. "@yume-chan/adb": "workspace:^0.0.17",
  47. "@yume-chan/ts-package-builder": "workspace:^1.0.0",
  48. "cross-env": "^7.0.3",
  49. "gh-release-fetch": "^3.0.2",
  50. "jest": "^29.3.1",
  51. "ts-jest": "^29.0.3",
  52. "typescript": "^4.8.4"
  53. },
  54. "peerDependencies": {
  55. "@yume-chan/adb": "workspace:^0.0.17",
  56. "gh-release-fetch": "^3.0.2"
  57. },
  58. "peerDependenciesMeta": {
  59. "@yume-chan/adb": {
  60. "optional": true
  61. },
  62. "gh-release-fetch": {
  63. "optional": true
  64. }
  65. }
  66. }