forked from binaryjs/js-binarypack
-
-
Notifications
You must be signed in to change notification settings - Fork 23
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
# [2.1.0](v2.0.0...v2.1.0) (2023-12-03) ### Features * re-add Blob support ([cd17d63](cd17d63)), closes [#61](#61) * re-add Blob support ([#62](#62)) ([e79d1ee](e79d1ee)), closes [#61](#61)
- Loading branch information
1 parent
e79d1ee
commit 68d89ea
Showing
2 changed files
with
123 additions
and
115 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,118 +1,118 @@ | ||
{ | ||
"name": "peerjs-js-binarypack", | ||
"version": "2.0.0", | ||
"description": "BinaryPack serialization", | ||
"homepage": "https://github.com/peers/js-binarypack", | ||
"main": "dist/binarypack.cjs", | ||
"module": "dist/binarypack.mjs", | ||
"source": "lib/binarypack.ts", | ||
"types": "dist/binarypack.d.ts", | ||
"type": "module", | ||
"exports": { | ||
".": { | ||
"import": { | ||
"types": "./dist/binarypack.d.ts", | ||
"default": "./dist/binarypack.mjs" | ||
}, | ||
"require": { | ||
"types": "./dist/binarypack.d.ts", | ||
"default": "./dist/binarypack.cjs" | ||
} | ||
} | ||
}, | ||
"scripts": { | ||
"watch": "parcel watch", | ||
"build": "parcel build", | ||
"format": "biome format --write .", | ||
"lint": "eslint --ext .js,.ts .", | ||
"check": "tsc --noEmit" | ||
}, | ||
"repository": { | ||
"type": "git", | ||
"url": "https://github.com/peers/js-binarypack" | ||
}, | ||
"funding": { | ||
"type": "opencollective", | ||
"url": "https://opencollective.com/peer" | ||
}, | ||
"collective": { | ||
"type": "opencollective", | ||
"url": "https://opencollective.com/peer" | ||
}, | ||
"author": "Eric Zhang", | ||
"contributors": [ | ||
{ | ||
"name": "Eric Zhang", | ||
"email": "[email protected]" | ||
}, | ||
{ | ||
"name": "Jonas Gloning", | ||
"email": "[email protected]" | ||
}, | ||
{ | ||
"name": "afrokick", | ||
"email": "[email protected]" | ||
}, | ||
{ | ||
"name": "manvalls", | ||
"email": "[email protected]" | ||
}, | ||
{ | ||
"name": "Michelle Bu", | ||
"email": "[email protected]" | ||
}, | ||
{ | ||
"name": "Liu Cong", | ||
"email": "[email protected]" | ||
}, | ||
{ | ||
"name": "Michelle Bu", | ||
"email": "[email protected]" | ||
}, | ||
{ | ||
"name": "lmb", | ||
"email": "[email protected]" | ||
}, | ||
{ | ||
"name": "orcaman", | ||
"email": "[email protected]" | ||
}, | ||
{ | ||
"name": "Godfrey Chan", | ||
"email": "[email protected]" | ||
}, | ||
{ | ||
"name": "Jarrett Cruger", | ||
"email": "[email protected]" | ||
}, | ||
{ | ||
"name": "Rossi Lorenzo", | ||
"email": "[email protected]" | ||
}, | ||
{ | ||
"name": "divec", | ||
"email": "[email protected]" | ||
}, | ||
{ | ||
"name": "renovate[bot]", | ||
"email": "29139614+renovate[bot]@users.noreply.github.com" | ||
} | ||
], | ||
"devDependencies": { | ||
"@biomejs/biome": "1.4.1", | ||
"@jest/globals": "^29.7.0", | ||
"@parcel/packager-ts": "^2.8.3", | ||
"@parcel/transformer-typescript-types": "^2.8.3", | ||
"@semantic-release/changelog": "^6.0.2", | ||
"@semantic-release/git": "^10.0.1", | ||
"@typescript-eslint/eslint-plugin": "^6.0.0", | ||
"eslint": "^8.34.0", | ||
"parcel": "^2.8.3", | ||
"semantic-release": "^20.1.0", | ||
"typescript": "^5.0.0" | ||
}, | ||
"license": "MIT", | ||
"engines": { | ||
"node": ">= 14.0.0" | ||
} | ||
"version": "2.1.0", | ||
"description": "BinaryPack serialization", | ||
"homepage": "https://github.com/peers/js-binarypack", | ||
"main": "dist/binarypack.cjs", | ||
"module": "dist/binarypack.mjs", | ||
"source": "lib/binarypack.ts", | ||
"types": "dist/binarypack.d.ts", | ||
"type": "module", | ||
"exports": { | ||
".": { | ||
"import": { | ||
"types": "./dist/binarypack.d.ts", | ||
"default": "./dist/binarypack.mjs" | ||
}, | ||
"require": { | ||
"types": "./dist/binarypack.d.ts", | ||
"default": "./dist/binarypack.cjs" | ||
} | ||
} | ||
}, | ||
"scripts": { | ||
"watch": "parcel watch", | ||
"build": "parcel build", | ||
"format": "biome format --write .", | ||
"lint": "eslint --ext .js,.ts .", | ||
"check": "tsc --noEmit" | ||
}, | ||
"repository": { | ||
"type": "git", | ||
"url": "https://github.com/peers/js-binarypack" | ||
}, | ||
"funding": { | ||
"type": "opencollective", | ||
"url": "https://opencollective.com/peer" | ||
}, | ||
"collective": { | ||
"type": "opencollective", | ||
"url": "https://opencollective.com/peer" | ||
}, | ||
"author": "Eric Zhang", | ||
"contributors": [ | ||
{ | ||
"name": "Eric Zhang", | ||
"email": "[email protected]" | ||
}, | ||
{ | ||
"name": "Jonas Gloning", | ||
"email": "[email protected]" | ||
}, | ||
{ | ||
"name": "afrokick", | ||
"email": "[email protected]" | ||
}, | ||
{ | ||
"name": "manvalls", | ||
"email": "[email protected]" | ||
}, | ||
{ | ||
"name": "Michelle Bu", | ||
"email": "[email protected]" | ||
}, | ||
{ | ||
"name": "Liu Cong", | ||
"email": "[email protected]" | ||
}, | ||
{ | ||
"name": "Michelle Bu", | ||
"email": "[email protected]" | ||
}, | ||
{ | ||
"name": "lmb", | ||
"email": "[email protected]" | ||
}, | ||
{ | ||
"name": "orcaman", | ||
"email": "[email protected]" | ||
}, | ||
{ | ||
"name": "Godfrey Chan", | ||
"email": "[email protected]" | ||
}, | ||
{ | ||
"name": "Jarrett Cruger", | ||
"email": "[email protected]" | ||
}, | ||
{ | ||
"name": "Rossi Lorenzo", | ||
"email": "[email protected]" | ||
}, | ||
{ | ||
"name": "divec", | ||
"email": "[email protected]" | ||
}, | ||
{ | ||
"name": "renovate[bot]", | ||
"email": "29139614+renovate[bot]@users.noreply.github.com" | ||
} | ||
], | ||
"devDependencies": { | ||
"@biomejs/biome": "1.4.1", | ||
"@jest/globals": "^29.7.0", | ||
"@parcel/packager-ts": "^2.8.3", | ||
"@parcel/transformer-typescript-types": "^2.8.3", | ||
"@semantic-release/changelog": "^6.0.2", | ||
"@semantic-release/git": "^10.0.1", | ||
"@typescript-eslint/eslint-plugin": "^6.0.0", | ||
"eslint": "^8.34.0", | ||
"parcel": "^2.8.3", | ||
"semantic-release": "^20.1.0", | ||
"typescript": "^5.0.0" | ||
}, | ||
"license": "MIT", | ||
"engines": { | ||
"node": ">= 14.0.0" | ||
} | ||
} |