New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

@mysten/bcs

Package Overview
Dependencies
Maintainers
4
Versions
537
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@mysten/bcs - npm Package Compare versions

Comparing version 0.0.0-experimental-20231212191318 to 0.0.0-experimental-20240104225555

dist/cjs/b58.d.ts

8

CHANGELOG.md
# Change Log
## 0.0.0-experimental-20231212191318
## 0.0.0-experimental-20240104225555
### Minor Changes
- e5f9e3ba21: Replace tsup based build to fix issues with esm/cjs dual publishing
## 0.9.1
### Patch Changes

@@ -6,0 +12,0 @@

26

package.json
{
"name": "@mysten/bcs",
"version": "0.0.0-experimental-20231212191318",
"version": "0.0.0-experimental-20240104225555",
"description": "BCS - Canonical Binary Serialization implementation for JavaScript",
"license": "Apache-2.0",
"author": "Mysten Labs <build@mystenlabs.com>",
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"sideEffects": false,
"type": "commonjs",
"main": "./dist/cjs/index.js",
"module": "./dist/esm/index.js",
"types": "./dist/cjs/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.mjs",
"require": "./dist/index.js"
"import": "./dist/esm/index.js",
"require": "./dist/cjs/index.js"
}
},
"files": [
"CHANGELOG.md",
"dist",
"src",
"CHANGELOG.md"
"src"
],

@@ -52,5 +52,5 @@ "repository": {

"size-limit": "^8.2.6",
"tsup": "^7.1.0",
"typescript": "^5.1.6",
"vitest": "^0.33.0"
"vitest": "^0.33.0",
"@mysten/build-scripts": "0.0.0"
},

@@ -63,5 +63,3 @@ "dependencies": {

"dev": "pnpm build --watch",
"build": "pnpm build:types && pnpm build:tsup",
"build:tsup": "tsup ./src/index.ts --format esm,cjs --sourcemap",
"build:types": "tsc --build",
"build": "build-package",
"test": "vitest run",

@@ -68,0 +66,0 @@ "test:watch": "vitest",

@@ -566,3 +566,3 @@ // Copyright (c) Mysten Labs, Inc.

generic<const Names extends readonly string[], const Type extends BcsType<any>>(
names: Names,
_names: Names,
cb: (...types: { [K in keyof Names]: BcsType<GenericPlaceholder<Names[K]>> }) => Type,

@@ -569,0 +569,0 @@ ): <T extends { [K in keyof Names]: BcsType<any> }>(

@@ -441,3 +441,3 @@ // Copyright (c) Mysten Labs, Inc.

name: String(param),
write: (data, writer) => {
write: (_data, _writer) => {
throw new Error('Not implemented');

@@ -444,0 +444,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