@solana/codecs-numbers 2.0.0-experimental.8a4cd99 → 2.0.0-experimental.9e133fd

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/LICENSE CHANGED
@@ -1,4 +1,4 @@
1
- Copyright (c) 2018 Solana Labs, Inc
1
+ Copyright (c) 2023 Solana Labs, Inc
2
2
 
3
3
  Permission is hereby granted, free of charge, to any person obtaining
4
4
  a copy of this software and associated documentation files (the
@@ -299,3 +299,5 @@ var getU8Decoder = (options = {}) => numberDecoderFactory({
299
299
  var getU8Codec = (options = {}) => combineCodec(getU8Encoder(options), getU8Decoder(options));
300
300
 
301
301
  export { Endian, assertNumberIsBetweenForCodec, getF32Codec, getF32Decoder, getF32Encoder, getF64Codec, getF64Decoder, getF64Encoder, getI128Codec, getI128Decoder, getI128Encoder, getI16Codec, getI16Decoder, getI16Encoder, getI32Codec, getI32Decoder, getI32Encoder, getI64Codec, getI64Decoder, getI64Encoder, getI8Codec, getI8Decoder, getI8Encoder, getShortU16Codec, getShortU16Decoder, getShortU16Encoder, getU128Codec, getU128Decoder, getU128Encoder, getU16Codec, getU16Decoder, getU16Encoder, getU32Codec, getU32Decoder, getU32Encoder, getU64Codec, getU64Decoder, getU64Encoder, getU8Codec, getU8Decoder, getU8Encoder };
302
+ //# sourceMappingURL=out.js.map
303
+ //# sourceMappingURL=index.native.js.map
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@solana/codecs-numbers",
3
- "version": "2.0.0-experimental.8a4cd99",
3
+ "version": "2.0.0-experimental.9e133fd",
4
4
  "description": "Codecs for numbers of different sizes and endianness",
5
5
  "exports": {
6
6
  "browser": {
@@ -49,7 +49,7 @@
49
49
  "node": ">=17.4"
50
50
  },
51
51
  "dependencies": {
52
- "@solana/codecs-core": "2.0.0-experimental.8a4cd99"
52
+ "@solana/codecs-core": "2.0.0-experimental.9e133fd"
53
53
  },
54
54
  "devDependencies": {
55
55
  "@solana/eslint-config-solana": "^1.0.2",
@@ -86,12 +86,12 @@
86
86
  "compile:typedefs": "tsc -p ./tsconfig.declarations.json",
87
87
  "dev": "jest -c node_modules/test-config/jest-dev.config.ts --rootDir . --watch",
88
88
  "publish-packages": "pnpm publish --tag experimental --access public --no-git-checks",
89
- "style:fix": "pnpm eslint --fix src/* && pnpm prettier -w src/*",
89
+ "style:fix": "pnpm eslint --fix src/* && pnpm prettier -w src/* package.json",
90
90
  "test:lint": "jest -c node_modules/test-config/jest-lint.config.ts --rootDir . --silent",
91
91
  "test:prettier": "jest -c node_modules/test-config/jest-prettier.config.ts --rootDir . --silent",
92
92
  "test:treeshakability:browser": "agadoo dist/index.browser.js",
93
- "test:treeshakability:native": "agadoo dist/index.node.js",
94
- "test:treeshakability:node": "agadoo dist/index.native.js",
93
+ "test:treeshakability:native": "agadoo dist/index.native.js",
94
+ "test:treeshakability:node": "agadoo dist/index.node.js",
95
95
  "test:typecheck": "tsc --noEmit",
96
96
  "test:unit:browser": "jest -c node_modules/test-config/jest-unit.config.browser.ts --rootDir . --silent",
97
97
  "test:unit:node": "jest -c node_modules/test-config/jest-unit.config.node.ts --rootDir . --silent"