@ocap/message 1.29.4 → 1.29.6
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/esm/package.mjs +2 -1
- package/lib/package.cjs +2 -1
- package/package.json +5 -4
package/esm/package.mjs
CHANGED
|
@@ -75,7 +75,8 @@ var require_package = /* @__PURE__ */ __commonJSMin(((exports, module) => {
|
|
|
75
75
|
"gen-docs": "jsdoc2md lib/message.js > docs/README.md",
|
|
76
76
|
"format-docs": "remark . -o",
|
|
77
77
|
"test": "bun test",
|
|
78
|
-
"coverage": "npm run test -- --coverage"
|
|
78
|
+
"coverage": "npm run test -- --coverage",
|
|
79
|
+
"clean": "rm -rf lib esm"
|
|
79
80
|
},
|
|
80
81
|
"gitHead": "87990c8b5e215107fc587c1ced0d6b3e2cd2483e"
|
|
81
82
|
};
|
package/lib/package.cjs
CHANGED
|
@@ -75,7 +75,8 @@ var require_package = /* @__PURE__ */ require_rolldown_runtime.__commonJSMin(((e
|
|
|
75
75
|
"gen-docs": "jsdoc2md lib/message.js > docs/README.md",
|
|
76
76
|
"format-docs": "remark . -o",
|
|
77
77
|
"test": "bun test",
|
|
78
|
-
"coverage": "npm run test -- --coverage"
|
|
78
|
+
"coverage": "npm run test -- --coverage",
|
|
79
|
+
"clean": "rm -rf lib esm"
|
|
79
80
|
},
|
|
80
81
|
"gitHead": "87990c8b5e215107fc587c1ced0d6b3e2cd2483e"
|
|
81
82
|
};
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@ocap/message",
|
|
3
3
|
"description": "Utility functions to encode and decode message that can send to forge",
|
|
4
|
-
"version": "1.29.
|
|
4
|
+
"version": "1.29.6",
|
|
5
5
|
"author": {
|
|
6
6
|
"name": "wangshijun",
|
|
7
7
|
"email": "shijun@arcblock.io",
|
|
@@ -18,8 +18,8 @@
|
|
|
18
18
|
"access": "public"
|
|
19
19
|
},
|
|
20
20
|
"dependencies": {
|
|
21
|
-
"@ocap/proto": "1.29.
|
|
22
|
-
"@ocap/util": "1.29.
|
|
21
|
+
"@ocap/proto": "1.29.6",
|
|
22
|
+
"@ocap/util": "1.29.6",
|
|
23
23
|
"debug": "^4.4.3",
|
|
24
24
|
"google-protobuf": "3.21.0",
|
|
25
25
|
"lodash": "^4.17.23"
|
|
@@ -87,7 +87,8 @@
|
|
|
87
87
|
"gen-docs": "jsdoc2md lib/message.js > docs/README.md",
|
|
88
88
|
"format-docs": "remark . -o",
|
|
89
89
|
"test": "bun test",
|
|
90
|
-
"coverage": "npm run test -- --coverage"
|
|
90
|
+
"coverage": "npm run test -- --coverage",
|
|
91
|
+
"clean": "rm -rf lib esm"
|
|
91
92
|
},
|
|
92
93
|
"gitHead": "87990c8b5e215107fc587c1ced0d6b3e2cd2483e"
|
|
93
94
|
}
|