package.json 1.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. {
  2. "name": "@yume-chan/adb-backend-ws",
  3. "private": true,
  4. "version": "0.0.9",
  5. "description": "Backend for `@yume-chan/adb` using WebSocket API.",
  6. "keywords": [
  7. "websocket",
  8. "adb"
  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/libraries/adb-backend-ws#readme",
  17. "repository": {
  18. "type": "git",
  19. "url": "git+https://github.com/yume-chan/ya-webadb.git",
  20. "directory": "libraries/adb-backend-ws"
  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": "build-ts-package",
  30. "build:watch": "build-ts-package --incremental"
  31. },
  32. "devDependencies": {
  33. "@yume-chan/ts-package-builder": "workspace:^1.0.0",
  34. "jest": "^29.3.1",
  35. "typescript": "^4.8.4"
  36. },
  37. "dependencies": {
  38. "@yume-chan/adb": "workspace:^0.0.17",
  39. "@yume-chan/stream-extra": "workspace:^0.0.17",
  40. "tslib": "^2.4.1"
  41. }
  42. }