UNPKG

remote-web-streams

Version:

Web streams that work across web workers and iframes.

57 lines (56 loc) 1.26 kB
{ "name": "remote-web-streams", "version": "0.2.0", "description": "Web streams that work across web workers and iframes.", "type": "module", "main": "dist/remote-web-streams.js", "types": "dist/remote-web-streams.d.ts", "keywords": [ "remote", "web", "streams", "readablestream", "whatwg", "worker" ], "repository": { "type": "git", "url": "https://github.com/MattiasBuelens/remote-web-streams.git" }, "author": "Mattias Buelens", "license": "MIT", "engines": { "node": ">= 18" }, "files": [ "dist/" ], "scripts": { "build": "npm run check:types && npm run build:bundle", "build:bundle": "rollup -c", "check:types": "tsc --project ./tsconfig.json --noEmit", "prepare": "npm run build && npm test", "start": "rollup -c -w", "test": "jest" }, "devDependencies": { "@jest/globals": "^29.5.0", "@rollup/plugin-typescript": "^11.1.1", "jest": "^29.5.0", "rollup": "^3.25.3", "rollup-plugin-dts": "^5.3.0", "ts-jest": "^29.1.0", "tslib": "^2.6.0", "typescript": "^5.1.3" }, "jest": { "transform": { "^.+\\.tsx?$": [ "ts-jest", { "tsconfig": "test/tsconfig.json" } ] } } }