@solana/codecs 2.0.0-rc.0 → 2.0.0-rc.2
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/README.md +4 -4
- package/package.json +18 -7
package/README.md
CHANGED
|
@@ -6,15 +6,15 @@
|
|
|
6
6
|
|
|
7
7
|
[code-style-prettier-image]: https://img.shields.io/badge/code_style-prettier-ff69b4.svg?style=flat-square
|
|
8
8
|
[code-style-prettier-url]: https://github.com/prettier/prettier
|
|
9
|
-
[npm-downloads-image]: https://img.shields.io/npm/dm/@solana/codecs/
|
|
10
|
-
[npm-image]: https://img.shields.io/npm/v/@solana/codecs/
|
|
11
|
-
[npm-url]: https://www.npmjs.com/package/@solana/codecs/v/
|
|
9
|
+
[npm-downloads-image]: https://img.shields.io/npm/dm/@solana/codecs/rc.svg?style=flat
|
|
10
|
+
[npm-image]: https://img.shields.io/npm/v/@solana/codecs/rc.svg?style=flat
|
|
11
|
+
[npm-url]: https://www.npmjs.com/package/@solana/codecs/v/rc
|
|
12
12
|
[semantic-release-image]: https://img.shields.io/badge/%20%20%F0%9F%93%A6%F0%9F%9A%80-semantic--release-e10079.svg
|
|
13
13
|
[semantic-release-url]: https://github.com/semantic-release/semantic-release
|
|
14
14
|
|
|
15
15
|
# @solana/codecs
|
|
16
16
|
|
|
17
|
-
This package contains all types and helpers for encoding and decoding anything to and from a `Uint8Array`. It can be used standalone, but it is also exported as part of the Solana JavaScript SDK [`@solana/web3.js@
|
|
17
|
+
This package contains all types and helpers for encoding and decoding anything to and from a `Uint8Array`. It can be used standalone, but it is also exported as part of the Solana JavaScript SDK [`@solana/web3.js@rc`](https://github.com/solana-labs/solana-web3.js/tree/master/packages/library).
|
|
18
18
|
|
|
19
19
|
No matter which serialization strategy we use, Codecs abstract away its implementation and offers a simple `encode` and `decode` interface. Codecs are also highly composable, allowing us to build complex data structures from simple building blocks.
|
|
20
20
|
|
package/package.json
CHANGED
|
@@ -1,8 +1,16 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@solana/codecs",
|
|
3
|
-
"version": "2.0.0-rc.
|
|
3
|
+
"version": "2.0.0-rc.2",
|
|
4
4
|
"description": "A library for encoding and decoding any data structure",
|
|
5
5
|
"exports": {
|
|
6
|
+
"edge-light": {
|
|
7
|
+
"import": "./dist/index.node.mjs",
|
|
8
|
+
"require": "./dist/index.node.cjs"
|
|
9
|
+
},
|
|
10
|
+
"workerd": {
|
|
11
|
+
"import": "./dist/index.node.mjs",
|
|
12
|
+
"require": "./dist/index.node.cjs"
|
|
13
|
+
},
|
|
6
14
|
"browser": {
|
|
7
15
|
"import": "./dist/index.browser.mjs",
|
|
8
16
|
"require": "./dist/index.browser.cjs"
|
|
@@ -46,11 +54,11 @@
|
|
|
46
54
|
"maintained node versions"
|
|
47
55
|
],
|
|
48
56
|
"dependencies": {
|
|
49
|
-
"@solana/codecs-core": "2.0.0-rc.
|
|
50
|
-
"@solana/codecs-data-structures": "2.0.0-rc.
|
|
51
|
-
"@solana/codecs-
|
|
52
|
-
"@solana/
|
|
53
|
-
"@solana/
|
|
57
|
+
"@solana/codecs-core": "2.0.0-rc.2",
|
|
58
|
+
"@solana/codecs-data-structures": "2.0.0-rc.2",
|
|
59
|
+
"@solana/codecs-strings": "2.0.0-rc.2",
|
|
60
|
+
"@solana/options": "2.0.0-rc.2",
|
|
61
|
+
"@solana/codecs-numbers": "2.0.0-rc.2"
|
|
54
62
|
},
|
|
55
63
|
"peerDependencies": {
|
|
56
64
|
"typescript": ">=5"
|
|
@@ -63,13 +71,16 @@
|
|
|
63
71
|
}
|
|
64
72
|
]
|
|
65
73
|
},
|
|
74
|
+
"engines": {
|
|
75
|
+
"node": ">=20.18.0"
|
|
76
|
+
},
|
|
66
77
|
"scripts": {
|
|
67
78
|
"compile:js": "tsup --config build-scripts/tsup.config.package.ts",
|
|
68
79
|
"compile:typedefs": "tsc -p ./tsconfig.declarations.json",
|
|
69
80
|
"dev": "jest -c ../../node_modules/@solana/test-config/jest-dev.config.ts --rootDir . --watch",
|
|
70
81
|
"publish-impl": "npm view $npm_package_name@$npm_package_version > /dev/null 2>&1 || pnpm publish --tag ${PUBLISH_TAG:-canary} --access public --no-git-checks",
|
|
71
82
|
"publish-packages": "pnpm prepublishOnly && pnpm publish-impl",
|
|
72
|
-
"style:fix": "pnpm eslint --fix src
|
|
83
|
+
"style:fix": "pnpm eslint --fix src && pnpm prettier --log-level warn --ignore-unknown --write ./*",
|
|
73
84
|
"test:lint": "TERM_OVERRIDE=\"${TURBO_HASH:+dumb}\" TERM=${TERM_OVERRIDE:-$TERM} jest -c ../../node_modules/@solana/test-config/jest-lint.config.ts --rootDir . --silent",
|
|
74
85
|
"test:prettier": "TERM_OVERRIDE=\"${TURBO_HASH:+dumb}\" TERM=${TERM_OVERRIDE:-$TERM} jest -c ../../node_modules/@solana/test-config/jest-prettier.config.ts --rootDir . --silent",
|
|
75
86
|
"test:treeshakability:browser": "agadoo dist/index.browser.mjs",
|