Skip to main content
The Deno 2 Release Candidate is here
Learn more
Module

x/typed_rpc/package.json

Lightweight JSON-RPC solution for TypeScript projects
Latest
File
{ "name": "typed-rpc", "version": "6.0.0", "description": "Lightweight JSON-RPC solution for TypeScript projects", "keywords": [ "rpc", "json-rpc", "typescript" ], "type": "module", "files": [ "dist" ], "exports": { ".": { "import": { "types": "./dist/client.d.mts", "default": "./dist/client.mjs" }, "require": { "types": "./dist/client.d.cts", "default": "./dist/client.cjs" } }, "./server": { "import": { "types": "./dist/server.d.mts", "default": "./dist/server.mjs" }, "require": { "types": "./dist/server.d.cts", "default": "./dist/server.cjs" } } }, "scripts": { "build": "pkgroll --clean-dist --sourcemap", "start": "tsx src/test/server.ts", "test": "with-server tap src/test/client.ts", "prepare": "npm run build" }, "author": "Felix Gnass <fgnass@gmail.com>", "repository": "fgnass/typed-rpc", "license": "MIT", "devDependencies": { "@types/express": "^4.17.21", "@types/isomorphic-fetch": "0.0.39", "@types/tap": "^15.0.11", "express": "^4.19.2", "isomorphic-fetch": "^3.0.0", "pkgroll": "^2.4.2", "superjson": "^2.2.1", "tap": "^19.0.2", "tsx": "^4.16.5", "typescript": "^5.4.5", "with-server": "^2.1.0" }}