UNPKG

coze

Version:

Coze - A cryptographic JSON messaging specification designed for human readability.

14 lines 397 B
// `join.js` instructs esbuild to join all Coze files into one file. // // // ``` // esbuild join_all.js --bundle --format=esm --minify --sourcemap --outfile=coze_all.min.js // ``` // Coze Core export * from '../canon.js'; export * from '../alg.js'; export * from '../coze.js'; export * from '../key.js'; export * from '../cryptokey.js'; // Coze Standard export * from '../standard/coze_array.js';