package.json 1.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556
  1. {
  2. "name": "birpc",
  3. "type": "module",
  4. "version": "2.3.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/birpc#readme",
  10. "repository": {
  11. "type": "git",
  12. "url": "git+https://github.com/antfu/birpc.git"
  13. },
  14. "bugs": {
  15. "url": "https://github.com/antfu/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": "^4.11.0",
  37. "@antfu/ni": "^24.3.0",
  38. "@types/node": "^22.13.13",
  39. "bumpp": "^10.1.0",
  40. "eslint": "^9.23.0",
  41. "tsx": "^4.19.3",
  42. "typescript": "^5.8.2",
  43. "unbuild": "^3.5.0",
  44. "vite": "^6.2.3",
  45. "vitest": "^3.0.9"
  46. },
  47. "scripts": {
  48. "build": "unbuild",
  49. "dev": "unbuild --stub",
  50. "lint": "eslint .",
  51. "release": "bumpp && pnpm publish",
  52. "start": "tsx src/index.ts",
  53. "typecheck": "tsc --noEmit",
  54. "test": "vitest"
  55. }
  56. }