Use bundle for your HTML

<!doctype html>
<html lang="en">
<body>
...
<script src="./node_modules/@anthonykgross/extensible-array-filter/dist/bundle.js"></script>
...
</body>
</html>
<!doctype html>
<html lang="en">
<body>
<script src="./node_modules/@anthonykgross/extensible-array-filter/dist/bundle.js"></script>
<script>
fetch('https://api.github.com/users/anthonykgross/repos')
.then(res => res.json())
.then(res => {
res.orWhere([
{field: 'stargazers_count', operator: '>=', value: 1},
{field: 'forks_count', operator: '>=', value: 1}
]).forEach(repo => {
console.log(repo);
})
})
</script>
</body>
</html>