{ "name": "@qubit-rs/client", "version": "0.4.5", "description": "Seamless RPC for Rust & TypeScript", "keywords": [ "api", "rust", "subscriptions", "rpc-framework", "jsonrpc", "trpc" ], "repository": { "type": "git", "url": "https://github.com/andogq/qubit.git", "directory": "pacakges/client" }, "type": "module", "scripts": { "build": "tsup ./src/index.ts", "check": "tsc" }, "files": [ "dist" ], "main": "./dist/index.cjs", "types": "./dist/index.d.cts", "exports": { ".": { "import": { "default": "./dist/index.js", "types": "./dist/index.d.ts" }, "require": { "default": "./dist/index.cjs", "types": "./dist/index.d.cts" } } }, "author": { "name": "Tom Anderson", "email": "tom@ando.gq", "url": "https://ando.gq" }, "license": "MIT", "devDependencies": { "tsup": "^8.3.5", "typescript": "^5.7.2" }, "tsup": { "format": [ "esm", "cjs" ], "splitting": true, "dts": true } }