1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556 |
- {
- "name": "birpc",
- "type": "module",
- "version": "2.3.0",
- "description": "Message based Two-way remote procedure call",
- "author": "Anthony Fu <anthonyfu117@hotmail.com>",
- "license": "MIT",
- "funding": "https://github.com/sponsors/antfu",
- "homepage": "https://github.com/antfu/birpc#readme",
- "repository": {
- "type": "git",
- "url": "git+https://github.com/antfu/birpc.git"
- },
- "bugs": {
- "url": "https://github.com/antfu/birpc/issues"
- },
- "keywords": [
- "rpc",
- "messages"
- ],
- "sideEffects": false,
- "exports": {
- ".": {
- "types": "./dist/index.d.ts",
- "import": "./dist/index.mjs",
- "require": "./dist/index.cjs"
- }
- },
- "main": "./dist/index.cjs",
- "module": "./dist/index.mjs",
- "types": "./dist/index.d.ts",
- "files": [
- "dist"
- ],
- "devDependencies": {
- "@antfu/eslint-config": "^4.11.0",
- "@antfu/ni": "^24.3.0",
- "@types/node": "^22.13.13",
- "bumpp": "^10.1.0",
- "eslint": "^9.23.0",
- "tsx": "^4.19.3",
- "typescript": "^5.8.2",
- "unbuild": "^3.5.0",
- "vite": "^6.2.3",
- "vitest": "^3.0.9"
- },
- "scripts": {
- "build": "unbuild",
- "dev": "unbuild --stub",
- "lint": "eslint .",
- "release": "bumpp && pnpm publish",
- "start": "tsx src/index.ts",
- "typecheck": "tsc --noEmit",
- "test": "vitest"
- }
- }
|