Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

observable-webworkers

Package Overview
Dependencies
Maintainers
1
Versions
4
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

observable-webworkers - npm Package Compare versions

Comparing version 1.0.0 to 2.0.0

dist/src/index.d.ts

140

package.json
{
"name": "observable-webworkers",
"version": "1.0.0",
"description": "A way to evesdrop on Web Worker messages",
"main": "lib/index.js",
"scripts": {
"test": "ava",
"lint": "standard"
},
"version": "2.0.0",
"description": "A way to eavesdrop on Web Worker messages",
"author": "Alex Potsides <alex@achingbrain.net>",
"license": "ISC",
"license": "Apache-2.0 OR MIT",
"homepage": "https://github.com/achingbrain/observable-webworkers#readme",
"repository": {

@@ -19,16 +15,118 @@ "type": "git",

},
"homepage": "https://github.com/achingbrain/observable-webworkers",
"engines": {
"node": ">=16.0.0",
"npm": ">=7.0.0"
},
"type": "module",
"types": "./dist/src/index.d.ts",
"files": [
"src",
"dist/src",
"!dist/test",
"!**/*.tsbuildinfo"
],
"exports": {
".": {
"import": "./dist/src/index.js"
}
},
"eslintConfig": {
"extends": "ipfs",
"parserOptions": {
"sourceType": "module"
}
},
"release": {
"branches": [
"master"
],
"plugins": [
[
"@semantic-release/commit-analyzer",
{
"preset": "conventionalcommits",
"releaseRules": [
{
"breaking": true,
"release": "major"
},
{
"revert": true,
"release": "patch"
},
{
"type": "feat",
"release": "minor"
},
{
"type": "fix",
"release": "patch"
},
{
"type": "chore",
"release": "patch"
},
{
"type": "docs",
"release": "patch"
},
{
"type": "test",
"release": "patch"
},
{
"scope": "no-release",
"release": false
}
]
}
],
[
"@semantic-release/release-notes-generator",
{
"preset": "conventionalcommits",
"presetConfig": {
"types": [
{
"type": "feat",
"section": "Features"
},
{
"type": "fix",
"section": "Bug Fixes"
},
{
"type": "chore",
"section": "Trivial Changes"
},
{
"type": "docs",
"section": "Trivial Changes"
},
{
"type": "test",
"section": "Tests"
}
]
}
}
],
"@semantic-release/changelog",
"@semantic-release/npm",
"@semantic-release/github",
"@semantic-release/git"
]
},
"scripts": {
"build": "tsc",
"pretest": "npm run build",
"test": "aegir test -t browser -f ./dist/test",
"test:chrome": "npm run test",
"test:firefox": "npm run test -- -- --browser firefox",
"lint": "aegir lint",
"release": "semantic-release"
},
"devDependencies": {
"ava": "^0.25.0",
"browserify": "^16.2.2",
"execa": "^0.10.0",
"pre-commit": "^1.2.2",
"run-headless": "^2.0.1",
"standard": "^11.0.1",
"webworkify": "^1.5.0"
},
"pre-commit": [
"lint",
"test"
]
"aegir": "^36.1.3"
}
}

4

README.md
# observable-webworkers
Allow you to listen to messages emitted by web workers
[![Build Status](https://github.com/achingbrain/observable-webworkers/actions/workflows/js-test-and-release.yml/badge.svg?branch=main)](https://github.com/achingbrain/observable-webworkers/actions/workflows/js-test-and-release.yml)
> Allow you to listen to messages emitted by web workers
## Install

@@ -6,0 +8,0 @@

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc