package.json 1.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657
  1. {
  2. "name": "birpc",
  3. "type": "module",
  4. "version": "2.9.0",
  5. "description": "Message based Two-way remote procedure call",
  6. "author": "Anthony Fu <anthonyfu117@hotmail.com>",
  7. "license": "MIT",
  8. "funding": "https://github.com/sponsors/antfu",
  9. "homepage": "https://github.com/antfu-collective/birpc#readme",
  10. "repository": {
  11. "type": "git",
  12. "url": "git+https://github.com/antfu-collective/birpc.git"
  13. },
  14. "bugs": {
  15. "url": "https://github.com/antfu-collective/birpc/issues"
  16. },
  17. "keywords": [
  18. "rpc",
  19. "messages"
  20. ],
  21. "sideEffects": false,
  22. "exports": {
  23. ".": {
  24. "types": "./dist/index.d.ts",
  25. "import": "./dist/index.mjs",
  26. "require": "./dist/index.cjs"
  27. }
  28. },
  29. "main": "./dist/index.cjs",
  30. "module": "./dist/index.mjs",
  31. "types": "./dist/index.d.ts",
  32. "files": [
  33. "dist"
  34. ],
  35. "devDependencies": {
  36. "@antfu/eslint-config": "^6.3.0",
  37. "@antfu/ni": "^28.0.0",
  38. "@types/node": "^24.10.1",
  39. "@vitest/coverage-v8": "3.0.9",
  40. "bumpp": "^10.3.2",
  41. "eslint": "^9.39.1",
  42. "tsx": "^4.21.0",
  43. "typescript": "^5.9.3",
  44. "unbuild": "^3.6.1",
  45. "vite": "^7.2.6",
  46. "vitest": "^4.0.15"
  47. },
  48. "scripts": {
  49. "build": "unbuild",
  50. "dev": "unbuild --stub",
  51. "lint": "eslint .",
  52. "release": "bumpp",
  53. "start": "tsx src/index.ts",
  54. "typecheck": "tsc --noEmit",
  55. "test": "vitest"
  56. }
  57. }