coze
Version:
Coze - A cryptographic JSON messaging specification designed for human readability.
16 lines (14 loc) • 443 B
JavaScript
// Coze Standard
// `join_standard.js` instructs esbuild to join all Coze standard files into one
// file.
// ```
// esbuild join_standard.js --bundle --format=esm --minify --sourcemap --outfile=coze_standard.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';