@cbortech/cbor 0.25.4 → 0.25.5
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.ja.md +3 -1
- package/README.md +3 -1
- package/package.json +4 -3
package/README.ja.md
CHANGED
|
@@ -1,6 +1,8 @@
|
|
|
1
1
|
# @cbortech/cbor
|
|
2
2
|
|
|
3
|
-
[CBOR](#準拠している仕様)、[CDN](#準拠している仕様)、JavaScript 値を相互変換するための TypeScript ライブラリです。
|
|
3
|
+
[CBOR](#準拠している仕様)、[CDN (CBOR-EDN)](#準拠している仕様)、JavaScript 値を相互変換するための TypeScript ライブラリです。
|
|
4
|
+
|
|
5
|
+
プレイグラウンドを **https://cbor.tech/cbor/** で公開しています。
|
|
4
6
|
|
|
5
7
|
このパッケージは `CBOR` ファサードに加えて、extension の実装に必要な CBOR AST ノードクラス用の entrypoint を公開します。
|
|
6
8
|
低レベルのパーサー、エンコーダー内部は、ドキュメント上の公開 API には含めていません。
|
package/README.md
CHANGED
|
@@ -1,7 +1,9 @@
|
|
|
1
1
|
# @cbortech/cbor
|
|
2
2
|
|
|
3
3
|
TypeScript library for converting between [CBOR](#specifications),
|
|
4
|
-
[CDN](#specifications), and JavaScript values.
|
|
4
|
+
[CDN (CBOR-EDN)](#specifications), and JavaScript values.
|
|
5
|
+
|
|
6
|
+
A live playground is available at **https://cbor.tech/cbor/**.
|
|
5
7
|
|
|
6
8
|
This package exposes the `CBOR` facade plus a separate AST entrypoint for the
|
|
7
9
|
CBOR node classes needed by extensions. Lower-level parser and encoder internals
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@cbortech/cbor",
|
|
3
|
-
"version": "0.25.
|
|
4
|
-
"description": "Convert between CBOR, CDN, and JavaScript values",
|
|
3
|
+
"version": "0.25.5",
|
|
4
|
+
"description": "Convert between CBOR, CDN (CBOR-EDN), and JavaScript values",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"cbor",
|
|
7
7
|
"cdn",
|
|
@@ -13,7 +13,7 @@
|
|
|
13
13
|
"serialization",
|
|
14
14
|
"typescript"
|
|
15
15
|
],
|
|
16
|
-
"homepage": "https://
|
|
16
|
+
"homepage": "https://cbor.tech/cbor/",
|
|
17
17
|
"repository": {
|
|
18
18
|
"type": "git",
|
|
19
19
|
"url": "git+https://github.com/cbortech/cbor.git"
|
|
@@ -95,6 +95,7 @@
|
|
|
95
95
|
"test:coverage": "vitest run --coverage",
|
|
96
96
|
"format": "prettier --write .",
|
|
97
97
|
"format:check": "prettier --check .",
|
|
98
|
+
"site:clean": "npm run --workspace site clean",
|
|
98
99
|
"site:dev": "npm run build && npm run --workspace site dev",
|
|
99
100
|
"site:build": "npm run build && npm run --workspace site build",
|
|
100
101
|
"site:preview": "npm run site:build && npm run --workspace site preview",
|