├── .gitignore ├── .prettierrc ├── LICENSE ├── README.md ├── package.json ├── playground ├── common │ └── types.ts ├── iframe-window │ ├── iframe.html │ └── index.ts └── main-window │ ├── index.html │ └── index.ts ├── src ├── backend.ts ├── errors.ts ├── frontend.ts ├── index.ts ├── types.ts └── utils.ts ├── tsconfig.json └── yarn.lock /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ameerthehacker/frame-rpc/HEAD/.gitignore -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ameerthehacker/frame-rpc/HEAD/.prettierrc -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ameerthehacker/frame-rpc/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ameerthehacker/frame-rpc/HEAD/README.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ameerthehacker/frame-rpc/HEAD/package.json -------------------------------------------------------------------------------- /playground/common/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ameerthehacker/frame-rpc/HEAD/playground/common/types.ts -------------------------------------------------------------------------------- /playground/iframe-window/iframe.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ameerthehacker/frame-rpc/HEAD/playground/iframe-window/iframe.html -------------------------------------------------------------------------------- /playground/iframe-window/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ameerthehacker/frame-rpc/HEAD/playground/iframe-window/index.ts -------------------------------------------------------------------------------- /playground/main-window/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ameerthehacker/frame-rpc/HEAD/playground/main-window/index.html -------------------------------------------------------------------------------- /playground/main-window/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ameerthehacker/frame-rpc/HEAD/playground/main-window/index.ts -------------------------------------------------------------------------------- /src/backend.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ameerthehacker/frame-rpc/HEAD/src/backend.ts -------------------------------------------------------------------------------- /src/errors.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ameerthehacker/frame-rpc/HEAD/src/errors.ts -------------------------------------------------------------------------------- /src/frontend.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ameerthehacker/frame-rpc/HEAD/src/frontend.ts -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ameerthehacker/frame-rpc/HEAD/src/index.ts -------------------------------------------------------------------------------- /src/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ameerthehacker/frame-rpc/HEAD/src/types.ts -------------------------------------------------------------------------------- /src/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ameerthehacker/frame-rpc/HEAD/src/utils.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ameerthehacker/frame-rpc/HEAD/tsconfig.json -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ameerthehacker/frame-rpc/HEAD/yarn.lock --------------------------------------------------------------------------------