package.json 1.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  1. {
  2. "name": "@yume-chan/scrcpy-decoder-tinyh264",
  3. "version": "0.0.17",
  4. "description": "TypeScript implementation of Scrcpy.",
  5. "keywords": [
  6. "adb",
  7. "android-phone",
  8. "scrcpy-decoder-tinyh264"
  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-decoder-tinyh264#readme",
  17. "repository": {
  18. "type": "git",
  19. "url": "git+https://github.com/yume-chan/ya-webadb.git",
  20. "directory": "packages/scrcpy-decoder-tinyh264"
  21. },
  22. "bugs": {
  23. "url": "https://github.com/yume-chan/ya-webadb/issues"
  24. },
  25. "type": "module",
  26. "main": "esm/index.js",
  27. "types": "esm/index.d.ts",
  28. "scripts": {
  29. "build": "tsc -b tsconfig.build.json",
  30. "build:watch": "tsc -b tsconfig.build.json",
  31. "//test": "cross-env NODE_OPTIONS=--experimental-vm-modules jest --coverage",
  32. "prepublishOnly": "npm run build"
  33. },
  34. "dependencies": {
  35. "@yume-chan/async": "^2.2.0",
  36. "@yume-chan/event": "workspace:^0.0.17",
  37. "@yume-chan/scrcpy": "workspace:^0.0.17",
  38. "@yume-chan/stream-extra": "workspace:^0.0.17",
  39. "tinyh264": "^0.0.7",
  40. "tslib": "^2.4.1",
  41. "yuv-buffer": "^1.0.0",
  42. "yuv-canvas": "^1.2.11"
  43. },
  44. "devDependencies": {
  45. "@jest/globals": "^29.3.1",
  46. "@yume-chan/ts-package-builder": "workspace:^1.0.0",
  47. "cross-env": "^7.0.3",
  48. "jest": "^29.3.1",
  49. "ts-jest": "^29.0.3",
  50. "typescript": "^4.8.4"
  51. }
  52. }