terminal-pilot 0.0.44 → 0.0.46
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/dist/cli.js +134 -39
- package/dist/cli.js.map +4 -4
- package/dist/commands/close-session.js +36 -0
- package/dist/commands/close-session.js.map +3 -3
- package/dist/commands/create-session.js +36 -0
- package/dist/commands/create-session.js.map +3 -3
- package/dist/commands/daemon-runtime.js +36 -0
- package/dist/commands/daemon-runtime.js.map +3 -3
- package/dist/commands/fill.js +36 -0
- package/dist/commands/fill.js.map +3 -3
- package/dist/commands/get-session.js +36 -0
- package/dist/commands/get-session.js.map +3 -3
- package/dist/commands/index.js +36 -0
- package/dist/commands/index.js.map +3 -3
- package/dist/commands/install.js +36 -0
- package/dist/commands/install.js.map +3 -3
- package/dist/commands/installer.js +36 -0
- package/dist/commands/installer.js.map +3 -3
- package/dist/commands/list-sessions.js +36 -0
- package/dist/commands/list-sessions.js.map +3 -3
- package/dist/commands/press-key.js +36 -0
- package/dist/commands/press-key.js.map +3 -3
- package/dist/commands/read-history.js +36 -0
- package/dist/commands/read-history.js.map +3 -3
- package/dist/commands/read-screen.js +36 -0
- package/dist/commands/read-screen.js.map +3 -3
- package/dist/commands/resize.js +36 -0
- package/dist/commands/resize.js.map +3 -3
- package/dist/commands/runtime.js +36 -0
- package/dist/commands/runtime.js.map +3 -3
- package/dist/commands/screenshot.js +36 -0
- package/dist/commands/screenshot.js.map +3 -3
- package/dist/commands/send-signal.js +36 -0
- package/dist/commands/send-signal.js.map +3 -3
- package/dist/commands/type.js +36 -0
- package/dist/commands/type.js.map +3 -3
- package/dist/commands/uninstall.js +36 -0
- package/dist/commands/uninstall.js.map +3 -3
- package/dist/commands/wait-for-exit.js +36 -0
- package/dist/commands/wait-for-exit.js.map +3 -3
- package/dist/commands/wait-for.js +36 -0
- package/dist/commands/wait-for.js.map +3 -3
- package/dist/composition.json +36 -1
- package/dist/testing/cli-repl.js +134 -39
- package/dist/testing/cli-repl.js.map +4 -4
- package/dist/testing/qa-cli.js +134 -39
- package/dist/testing/qa-cli.js.map +4 -4
- package/node_modules/@poe-code/config-mutations/package.json +0 -5
- package/node_modules/@poe-code/frontmatter/package.json +0 -3
- package/node_modules/fast-string-truncated-width/dist/index.d.ts +4 -0
- package/node_modules/fast-string-truncated-width/dist/index.js +111 -0
- package/node_modules/fast-string-truncated-width/dist/types.d.ts +19 -0
- package/node_modules/fast-string-truncated-width/dist/types.js +2 -0
- package/node_modules/fast-string-truncated-width/dist/utils.d.ts +4 -0
- package/node_modules/fast-string-truncated-width/dist/utils.js +20 -0
- package/node_modules/fast-string-truncated-width/license +21 -0
- package/node_modules/fast-string-truncated-width/package.json +35 -0
- package/node_modules/fast-string-truncated-width/readme.md +59 -0
- package/node_modules/fast-string-width/dist/index.d.ts +4 -0
- package/node_modules/fast-string-width/dist/index.js +14 -0
- package/node_modules/fast-string-width/license +21 -0
- package/node_modules/fast-string-width/package.json +34 -0
- package/node_modules/fast-string-width/readme.md +42 -0
- package/node_modules/fast-wrap-ansi/LICENSE +23 -0
- package/node_modules/fast-wrap-ansi/README.md +26 -0
- package/node_modules/fast-wrap-ansi/lib/main.d.ts +6 -0
- package/node_modules/fast-wrap-ansi/lib/main.js +218 -0
- package/node_modules/fast-wrap-ansi/package.json +51 -0
- package/node_modules/jsonc-parser/CHANGELOG.md +76 -0
- package/node_modules/jsonc-parser/LICENSE.md +21 -0
- package/node_modules/jsonc-parser/README.md +364 -0
- package/node_modules/jsonc-parser/SECURITY.md +41 -0
- package/node_modules/jsonc-parser/lib/esm/impl/edit.js +185 -0
- package/node_modules/jsonc-parser/lib/esm/impl/format.js +261 -0
- package/node_modules/jsonc-parser/lib/esm/impl/parser.js +659 -0
- package/node_modules/jsonc-parser/lib/esm/impl/scanner.js +443 -0
- package/node_modules/jsonc-parser/lib/esm/impl/string-intern.js +29 -0
- package/node_modules/jsonc-parser/lib/esm/main.d.ts +351 -0
- package/node_modules/jsonc-parser/lib/esm/main.js +178 -0
- package/node_modules/jsonc-parser/lib/umd/impl/edit.js +201 -0
- package/node_modules/jsonc-parser/lib/umd/impl/format.js +275 -0
- package/node_modules/jsonc-parser/lib/umd/impl/parser.js +682 -0
- package/node_modules/jsonc-parser/lib/umd/impl/scanner.js +456 -0
- package/node_modules/jsonc-parser/lib/umd/impl/string-intern.js +42 -0
- package/node_modules/jsonc-parser/lib/umd/main.d.ts +351 -0
- package/node_modules/jsonc-parser/lib/umd/main.js +194 -0
- package/node_modules/jsonc-parser/package.json +37 -0
- package/node_modules/sisteransi/license +21 -0
- package/node_modules/sisteransi/package.json +34 -0
- package/node_modules/sisteransi/readme.md +113 -0
- package/node_modules/sisteransi/src/index.js +58 -0
- package/node_modules/sisteransi/src/sisteransi.d.ts +35 -0
- package/node_modules/smol-toml/LICENSE +24 -0
- package/node_modules/smol-toml/README.md +239 -0
- package/node_modules/smol-toml/dist/date.d.ts +41 -0
- package/node_modules/smol-toml/dist/date.js +127 -0
- package/node_modules/smol-toml/dist/error.d.ts +38 -0
- package/node_modules/smol-toml/dist/error.js +63 -0
- package/node_modules/smol-toml/dist/extract.d.ts +30 -0
- package/node_modules/smol-toml/dist/extract.js +100 -0
- package/node_modules/smol-toml/dist/index.cjs +897 -0
- package/node_modules/smol-toml/dist/index.d.ts +43 -0
- package/node_modules/smol-toml/dist/index.js +33 -0
- package/node_modules/smol-toml/dist/parse.d.ts +37 -0
- package/node_modules/smol-toml/dist/parse.js +148 -0
- package/node_modules/smol-toml/dist/primitive.d.ts +31 -0
- package/node_modules/smol-toml/dist/primitive.js +179 -0
- package/node_modules/smol-toml/dist/stringify.d.ts +31 -0
- package/node_modules/smol-toml/dist/stringify.js +167 -0
- package/node_modules/smol-toml/dist/struct.d.ts +32 -0
- package/node_modules/smol-toml/dist/struct.js +184 -0
- package/node_modules/smol-toml/dist/util.d.ts +42 -0
- package/node_modules/smol-toml/dist/util.js +111 -0
- package/node_modules/smol-toml/package.json +54 -0
- package/node_modules/toolcraft-design/package.json +0 -5
- package/node_modules/yaml/LICENSE +13 -0
- package/node_modules/yaml/README.md +172 -0
- package/node_modules/yaml/bin.mjs +11 -0
- package/node_modules/yaml/browser/dist/compose/compose-collection.js +88 -0
- package/node_modules/yaml/browser/dist/compose/compose-doc.js +43 -0
- package/node_modules/yaml/browser/dist/compose/compose-node.js +109 -0
- package/node_modules/yaml/browser/dist/compose/compose-scalar.js +86 -0
- package/node_modules/yaml/browser/dist/compose/composer.js +219 -0
- package/node_modules/yaml/browser/dist/compose/resolve-block-map.js +115 -0
- package/node_modules/yaml/browser/dist/compose/resolve-block-scalar.js +198 -0
- package/node_modules/yaml/browser/dist/compose/resolve-block-seq.js +49 -0
- package/node_modules/yaml/browser/dist/compose/resolve-end.js +37 -0
- package/node_modules/yaml/browser/dist/compose/resolve-flow-collection.js +207 -0
- package/node_modules/yaml/browser/dist/compose/resolve-flow-scalar.js +225 -0
- package/node_modules/yaml/browser/dist/compose/resolve-props.js +146 -0
- package/node_modules/yaml/browser/dist/compose/util-contains-newline.js +34 -0
- package/node_modules/yaml/browser/dist/compose/util-empty-scalar-position.js +26 -0
- package/node_modules/yaml/browser/dist/compose/util-flow-indent-check.js +15 -0
- package/node_modules/yaml/browser/dist/compose/util-map-includes.js +13 -0
- package/node_modules/yaml/browser/dist/doc/Document.js +335 -0
- package/node_modules/yaml/browser/dist/doc/anchors.js +71 -0
- package/node_modules/yaml/browser/dist/doc/applyReviver.js +55 -0
- package/node_modules/yaml/browser/dist/doc/createNode.js +88 -0
- package/node_modules/yaml/browser/dist/doc/directives.js +176 -0
- package/node_modules/yaml/browser/dist/errors.js +57 -0
- package/node_modules/yaml/browser/dist/index.js +17 -0
- package/node_modules/yaml/browser/dist/log.js +11 -0
- package/node_modules/yaml/browser/dist/nodes/Alias.js +116 -0
- package/node_modules/yaml/browser/dist/nodes/Collection.js +147 -0
- package/node_modules/yaml/browser/dist/nodes/Node.js +38 -0
- package/node_modules/yaml/browser/dist/nodes/Pair.js +36 -0
- package/node_modules/yaml/browser/dist/nodes/Scalar.js +24 -0
- package/node_modules/yaml/browser/dist/nodes/YAMLMap.js +144 -0
- package/node_modules/yaml/browser/dist/nodes/YAMLSeq.js +113 -0
- package/node_modules/yaml/browser/dist/nodes/addPairToJSMap.js +63 -0
- package/node_modules/yaml/browser/dist/nodes/identity.js +36 -0
- package/node_modules/yaml/browser/dist/nodes/toJS.js +37 -0
- package/node_modules/yaml/browser/dist/parse/cst-scalar.js +214 -0
- package/node_modules/yaml/browser/dist/parse/cst-stringify.js +61 -0
- package/node_modules/yaml/browser/dist/parse/cst-visit.js +97 -0
- package/node_modules/yaml/browser/dist/parse/cst.js +98 -0
- package/node_modules/yaml/browser/dist/parse/lexer.js +721 -0
- package/node_modules/yaml/browser/dist/parse/line-counter.js +39 -0
- package/node_modules/yaml/browser/dist/parse/parser.js +975 -0
- package/node_modules/yaml/browser/dist/public-api.js +102 -0
- package/node_modules/yaml/browser/dist/schema/Schema.js +37 -0
- package/node_modules/yaml/browser/dist/schema/common/map.js +17 -0
- package/node_modules/yaml/browser/dist/schema/common/null.js +15 -0
- package/node_modules/yaml/browser/dist/schema/common/seq.js +17 -0
- package/node_modules/yaml/browser/dist/schema/common/string.js +14 -0
- package/node_modules/yaml/browser/dist/schema/core/bool.js +19 -0
- package/node_modules/yaml/browser/dist/schema/core/float.js +43 -0
- package/node_modules/yaml/browser/dist/schema/core/int.js +38 -0
- package/node_modules/yaml/browser/dist/schema/core/schema.js +23 -0
- package/node_modules/yaml/browser/dist/schema/json/schema.js +62 -0
- package/node_modules/yaml/browser/dist/schema/tags.js +96 -0
- package/node_modules/yaml/browser/dist/schema/yaml-1.1/binary.js +58 -0
- package/node_modules/yaml/browser/dist/schema/yaml-1.1/bool.js +26 -0
- package/node_modules/yaml/browser/dist/schema/yaml-1.1/float.js +46 -0
- package/node_modules/yaml/browser/dist/schema/yaml-1.1/int.js +71 -0
- package/node_modules/yaml/browser/dist/schema/yaml-1.1/merge.js +67 -0
- package/node_modules/yaml/browser/dist/schema/yaml-1.1/omap.js +74 -0
- package/node_modules/yaml/browser/dist/schema/yaml-1.1/pairs.js +78 -0
- package/node_modules/yaml/browser/dist/schema/yaml-1.1/schema.js +39 -0
- package/node_modules/yaml/browser/dist/schema/yaml-1.1/set.js +93 -0
- package/node_modules/yaml/browser/dist/schema/yaml-1.1/timestamp.js +101 -0
- package/node_modules/yaml/browser/dist/stringify/foldFlowLines.js +146 -0
- package/node_modules/yaml/browser/dist/stringify/stringify.js +129 -0
- package/node_modules/yaml/browser/dist/stringify/stringifyCollection.js +153 -0
- package/node_modules/yaml/browser/dist/stringify/stringifyComment.js +20 -0
- package/node_modules/yaml/browser/dist/stringify/stringifyDocument.js +85 -0
- package/node_modules/yaml/browser/dist/stringify/stringifyNumber.js +25 -0
- package/node_modules/yaml/browser/dist/stringify/stringifyPair.js +150 -0
- package/node_modules/yaml/browser/dist/stringify/stringifyString.js +336 -0
- package/node_modules/yaml/browser/dist/util.js +11 -0
- package/node_modules/yaml/browser/dist/visit.js +233 -0
- package/node_modules/yaml/browser/index.js +5 -0
- package/node_modules/yaml/browser/package.json +3 -0
- package/node_modules/yaml/dist/cli.d.ts +8 -0
- package/node_modules/yaml/dist/cli.mjs +201 -0
- package/node_modules/yaml/dist/compose/compose-collection.d.ts +11 -0
- package/node_modules/yaml/dist/compose/compose-collection.js +90 -0
- package/node_modules/yaml/dist/compose/compose-doc.d.ts +7 -0
- package/node_modules/yaml/dist/compose/compose-doc.js +45 -0
- package/node_modules/yaml/dist/compose/compose-node.d.ts +29 -0
- package/node_modules/yaml/dist/compose/compose-node.js +112 -0
- package/node_modules/yaml/dist/compose/compose-scalar.d.ts +5 -0
- package/node_modules/yaml/dist/compose/compose-scalar.js +88 -0
- package/node_modules/yaml/dist/compose/composer.d.ts +63 -0
- package/node_modules/yaml/dist/compose/composer.js +224 -0
- package/node_modules/yaml/dist/compose/resolve-block-map.d.ts +6 -0
- package/node_modules/yaml/dist/compose/resolve-block-map.js +117 -0
- package/node_modules/yaml/dist/compose/resolve-block-scalar.d.ts +11 -0
- package/node_modules/yaml/dist/compose/resolve-block-scalar.js +200 -0
- package/node_modules/yaml/dist/compose/resolve-block-seq.d.ts +6 -0
- package/node_modules/yaml/dist/compose/resolve-block-seq.js +51 -0
- package/node_modules/yaml/dist/compose/resolve-end.d.ts +6 -0
- package/node_modules/yaml/dist/compose/resolve-end.js +39 -0
- package/node_modules/yaml/dist/compose/resolve-flow-collection.d.ts +7 -0
- package/node_modules/yaml/dist/compose/resolve-flow-collection.js +209 -0
- package/node_modules/yaml/dist/compose/resolve-flow-scalar.d.ts +10 -0
- package/node_modules/yaml/dist/compose/resolve-flow-scalar.js +227 -0
- package/node_modules/yaml/dist/compose/resolve-props.d.ts +23 -0
- package/node_modules/yaml/dist/compose/resolve-props.js +148 -0
- package/node_modules/yaml/dist/compose/util-contains-newline.d.ts +2 -0
- package/node_modules/yaml/dist/compose/util-contains-newline.js +36 -0
- package/node_modules/yaml/dist/compose/util-empty-scalar-position.d.ts +2 -0
- package/node_modules/yaml/dist/compose/util-empty-scalar-position.js +28 -0
- package/node_modules/yaml/dist/compose/util-flow-indent-check.d.ts +3 -0
- package/node_modules/yaml/dist/compose/util-flow-indent-check.js +17 -0
- package/node_modules/yaml/dist/compose/util-map-includes.d.ts +4 -0
- package/node_modules/yaml/dist/compose/util-map-includes.js +15 -0
- package/node_modules/yaml/dist/doc/Document.d.ts +141 -0
- package/node_modules/yaml/dist/doc/Document.js +337 -0
- package/node_modules/yaml/dist/doc/anchors.d.ts +24 -0
- package/node_modules/yaml/dist/doc/anchors.js +76 -0
- package/node_modules/yaml/dist/doc/applyReviver.d.ts +9 -0
- package/node_modules/yaml/dist/doc/applyReviver.js +57 -0
- package/node_modules/yaml/dist/doc/createNode.d.ts +17 -0
- package/node_modules/yaml/dist/doc/createNode.js +90 -0
- package/node_modules/yaml/dist/doc/directives.d.ts +49 -0
- package/node_modules/yaml/dist/doc/directives.js +178 -0
- package/node_modules/yaml/dist/errors.d.ts +21 -0
- package/node_modules/yaml/dist/errors.js +62 -0
- package/node_modules/yaml/dist/index.d.ts +25 -0
- package/node_modules/yaml/dist/index.js +50 -0
- package/node_modules/yaml/dist/log.d.ts +3 -0
- package/node_modules/yaml/dist/log.js +19 -0
- package/node_modules/yaml/dist/nodes/Alias.d.ts +29 -0
- package/node_modules/yaml/dist/nodes/Alias.js +118 -0
- package/node_modules/yaml/dist/nodes/Collection.d.ts +73 -0
- package/node_modules/yaml/dist/nodes/Collection.js +151 -0
- package/node_modules/yaml/dist/nodes/Node.d.ts +53 -0
- package/node_modules/yaml/dist/nodes/Node.js +40 -0
- package/node_modules/yaml/dist/nodes/Pair.d.ts +22 -0
- package/node_modules/yaml/dist/nodes/Pair.js +39 -0
- package/node_modules/yaml/dist/nodes/Scalar.d.ts +47 -0
- package/node_modules/yaml/dist/nodes/Scalar.js +27 -0
- package/node_modules/yaml/dist/nodes/YAMLMap.d.ts +53 -0
- package/node_modules/yaml/dist/nodes/YAMLMap.js +147 -0
- package/node_modules/yaml/dist/nodes/YAMLSeq.d.ts +60 -0
- package/node_modules/yaml/dist/nodes/YAMLSeq.js +115 -0
- package/node_modules/yaml/dist/nodes/addPairToJSMap.d.ts +4 -0
- package/node_modules/yaml/dist/nodes/addPairToJSMap.js +65 -0
- package/node_modules/yaml/dist/nodes/identity.d.ts +23 -0
- package/node_modules/yaml/dist/nodes/identity.js +53 -0
- package/node_modules/yaml/dist/nodes/toJS.d.ts +29 -0
- package/node_modules/yaml/dist/nodes/toJS.js +39 -0
- package/node_modules/yaml/dist/options.d.ts +350 -0
- package/node_modules/yaml/dist/parse/cst-scalar.d.ts +64 -0
- package/node_modules/yaml/dist/parse/cst-scalar.js +218 -0
- package/node_modules/yaml/dist/parse/cst-stringify.d.ts +8 -0
- package/node_modules/yaml/dist/parse/cst-stringify.js +63 -0
- package/node_modules/yaml/dist/parse/cst-visit.d.ts +39 -0
- package/node_modules/yaml/dist/parse/cst-visit.js +99 -0
- package/node_modules/yaml/dist/parse/cst.d.ts +109 -0
- package/node_modules/yaml/dist/parse/cst.js +112 -0
- package/node_modules/yaml/dist/parse/lexer.d.ts +87 -0
- package/node_modules/yaml/dist/parse/lexer.js +723 -0
- package/node_modules/yaml/dist/parse/line-counter.d.ts +22 -0
- package/node_modules/yaml/dist/parse/line-counter.js +41 -0
- package/node_modules/yaml/dist/parse/parser.d.ts +84 -0
- package/node_modules/yaml/dist/parse/parser.js +980 -0
- package/node_modules/yaml/dist/public-api.d.ts +44 -0
- package/node_modules/yaml/dist/public-api.js +107 -0
- package/node_modules/yaml/dist/schema/Schema.d.ts +17 -0
- package/node_modules/yaml/dist/schema/Schema.js +39 -0
- package/node_modules/yaml/dist/schema/common/map.d.ts +2 -0
- package/node_modules/yaml/dist/schema/common/map.js +19 -0
- package/node_modules/yaml/dist/schema/common/null.d.ts +4 -0
- package/node_modules/yaml/dist/schema/common/null.js +17 -0
- package/node_modules/yaml/dist/schema/common/seq.d.ts +2 -0
- package/node_modules/yaml/dist/schema/common/seq.js +19 -0
- package/node_modules/yaml/dist/schema/common/string.d.ts +2 -0
- package/node_modules/yaml/dist/schema/common/string.js +16 -0
- package/node_modules/yaml/dist/schema/core/bool.d.ts +4 -0
- package/node_modules/yaml/dist/schema/core/bool.js +21 -0
- package/node_modules/yaml/dist/schema/core/float.d.ts +4 -0
- package/node_modules/yaml/dist/schema/core/float.js +47 -0
- package/node_modules/yaml/dist/schema/core/int.d.ts +4 -0
- package/node_modules/yaml/dist/schema/core/int.js +42 -0
- package/node_modules/yaml/dist/schema/core/schema.d.ts +1 -0
- package/node_modules/yaml/dist/schema/core/schema.js +25 -0
- package/node_modules/yaml/dist/schema/json/schema.d.ts +2 -0
- package/node_modules/yaml/dist/schema/json/schema.js +64 -0
- package/node_modules/yaml/dist/schema/json-schema.d.ts +69 -0
- package/node_modules/yaml/dist/schema/tags.d.ts +48 -0
- package/node_modules/yaml/dist/schema/tags.js +99 -0
- package/node_modules/yaml/dist/schema/types.d.ts +92 -0
- package/node_modules/yaml/dist/schema/yaml-1.1/binary.d.ts +2 -0
- package/node_modules/yaml/dist/schema/yaml-1.1/binary.js +70 -0
- package/node_modules/yaml/dist/schema/yaml-1.1/bool.d.ts +7 -0
- package/node_modules/yaml/dist/schema/yaml-1.1/bool.js +29 -0
- package/node_modules/yaml/dist/schema/yaml-1.1/float.d.ts +4 -0
- package/node_modules/yaml/dist/schema/yaml-1.1/float.js +50 -0
- package/node_modules/yaml/dist/schema/yaml-1.1/int.d.ts +5 -0
- package/node_modules/yaml/dist/schema/yaml-1.1/int.js +76 -0
- package/node_modules/yaml/dist/schema/yaml-1.1/merge.d.ts +9 -0
- package/node_modules/yaml/dist/schema/yaml-1.1/merge.js +71 -0
- package/node_modules/yaml/dist/schema/yaml-1.1/omap.d.ts +22 -0
- package/node_modules/yaml/dist/schema/yaml-1.1/omap.js +77 -0
- package/node_modules/yaml/dist/schema/yaml-1.1/pairs.d.ts +10 -0
- package/node_modules/yaml/dist/schema/yaml-1.1/pairs.js +82 -0
- package/node_modules/yaml/dist/schema/yaml-1.1/schema.d.ts +1 -0
- package/node_modules/yaml/dist/schema/yaml-1.1/schema.js +41 -0
- package/node_modules/yaml/dist/schema/yaml-1.1/set.d.ts +28 -0
- package/node_modules/yaml/dist/schema/yaml-1.1/set.js +96 -0
- package/node_modules/yaml/dist/schema/yaml-1.1/timestamp.d.ts +6 -0
- package/node_modules/yaml/dist/schema/yaml-1.1/timestamp.js +105 -0
- package/node_modules/yaml/dist/stringify/foldFlowLines.d.ts +34 -0
- package/node_modules/yaml/dist/stringify/foldFlowLines.js +151 -0
- package/node_modules/yaml/dist/stringify/stringify.d.ts +21 -0
- package/node_modules/yaml/dist/stringify/stringify.js +132 -0
- package/node_modules/yaml/dist/stringify/stringifyCollection.d.ts +17 -0
- package/node_modules/yaml/dist/stringify/stringifyCollection.js +155 -0
- package/node_modules/yaml/dist/stringify/stringifyComment.d.ts +10 -0
- package/node_modules/yaml/dist/stringify/stringifyComment.js +24 -0
- package/node_modules/yaml/dist/stringify/stringifyDocument.d.ts +4 -0
- package/node_modules/yaml/dist/stringify/stringifyDocument.js +87 -0
- package/node_modules/yaml/dist/stringify/stringifyNumber.d.ts +2 -0
- package/node_modules/yaml/dist/stringify/stringifyNumber.js +27 -0
- package/node_modules/yaml/dist/stringify/stringifyPair.d.ts +3 -0
- package/node_modules/yaml/dist/stringify/stringifyPair.js +152 -0
- package/node_modules/yaml/dist/stringify/stringifyString.d.ts +9 -0
- package/node_modules/yaml/dist/stringify/stringifyString.js +338 -0
- package/node_modules/yaml/dist/test-events.d.ts +4 -0
- package/node_modules/yaml/dist/test-events.js +134 -0
- package/node_modules/yaml/dist/util.d.ts +16 -0
- package/node_modules/yaml/dist/util.js +28 -0
- package/node_modules/yaml/dist/visit.d.ts +102 -0
- package/node_modules/yaml/dist/visit.js +236 -0
- package/node_modules/yaml/package.json +97 -0
- package/node_modules/yaml/util.js +2 -0
- package/package.json +10 -4
|
@@ -0,0 +1,43 @@
|
|
|
1
|
+
/*!
|
|
2
|
+
* Copyright (c) Squirrel Chat et al., All rights reserved.
|
|
3
|
+
* SPDX-License-Identifier: BSD-3-Clause
|
|
4
|
+
*
|
|
5
|
+
* Redistribution and use in source and binary forms, with or without
|
|
6
|
+
* modification, are permitted provided that the following conditions are met:
|
|
7
|
+
*
|
|
8
|
+
* 1. Redistributions of source code must retain the above copyright notice, this
|
|
9
|
+
* list of conditions and the following disclaimer.
|
|
10
|
+
* 2. Redistributions in binary form must reproduce the above copyright notice,
|
|
11
|
+
* this list of conditions and the following disclaimer in the
|
|
12
|
+
* documentation and/or other materials provided with the distribution.
|
|
13
|
+
* 3. Neither the name of the copyright holder nor the names of its contributors
|
|
14
|
+
* may be used to endorse or promote products derived from this software without
|
|
15
|
+
* specific prior written permission.
|
|
16
|
+
*
|
|
17
|
+
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
|
|
18
|
+
* ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
|
|
19
|
+
* WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
|
|
20
|
+
* DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
|
|
21
|
+
* FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
|
|
22
|
+
* DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
|
|
23
|
+
* SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
|
|
24
|
+
* CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
|
|
25
|
+
* OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
|
|
26
|
+
* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
27
|
+
*/
|
|
28
|
+
import { parse } from './parse.js';
|
|
29
|
+
import { stringify } from './stringify.js';
|
|
30
|
+
import { TomlDate } from './date.js';
|
|
31
|
+
import { TomlError } from './error.js';
|
|
32
|
+
export type { TomlValue, TomlTable, TomlValueWithoutBigInt, TomlTableWithoutBigInt } from './util.js';
|
|
33
|
+
declare const _default: {
|
|
34
|
+
parse: typeof parse;
|
|
35
|
+
stringify: typeof stringify;
|
|
36
|
+
TomlDate: typeof TomlDate;
|
|
37
|
+
TomlError: typeof TomlError;
|
|
38
|
+
};
|
|
39
|
+
export default _default;
|
|
40
|
+
export { parse, stringify, TomlDate, TomlError };
|
|
41
|
+
export type {
|
|
42
|
+
/** @deprecated use TomlValue instead */
|
|
43
|
+
TomlValue as TomlPrimitive } from './util.js';
|
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
/*!
|
|
2
|
+
* Copyright (c) Squirrel Chat et al., All rights reserved.
|
|
3
|
+
* SPDX-License-Identifier: BSD-3-Clause
|
|
4
|
+
*
|
|
5
|
+
* Redistribution and use in source and binary forms, with or without
|
|
6
|
+
* modification, are permitted provided that the following conditions are met:
|
|
7
|
+
*
|
|
8
|
+
* 1. Redistributions of source code must retain the above copyright notice, this
|
|
9
|
+
* list of conditions and the following disclaimer.
|
|
10
|
+
* 2. Redistributions in binary form must reproduce the above copyright notice,
|
|
11
|
+
* this list of conditions and the following disclaimer in the
|
|
12
|
+
* documentation and/or other materials provided with the distribution.
|
|
13
|
+
* 3. Neither the name of the copyright holder nor the names of its contributors
|
|
14
|
+
* may be used to endorse or promote products derived from this software without
|
|
15
|
+
* specific prior written permission.
|
|
16
|
+
*
|
|
17
|
+
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
|
|
18
|
+
* ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
|
|
19
|
+
* WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
|
|
20
|
+
* DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
|
|
21
|
+
* FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
|
|
22
|
+
* DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
|
|
23
|
+
* SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
|
|
24
|
+
* CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
|
|
25
|
+
* OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
|
|
26
|
+
* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
27
|
+
*/
|
|
28
|
+
import { parse } from './parse.js';
|
|
29
|
+
import { stringify } from './stringify.js';
|
|
30
|
+
import { TomlDate } from './date.js';
|
|
31
|
+
import { TomlError } from './error.js';
|
|
32
|
+
export default { parse, stringify, TomlDate, TomlError };
|
|
33
|
+
export { parse, stringify, TomlDate, TomlError };
|
|
@@ -0,0 +1,37 @@
|
|
|
1
|
+
/*!
|
|
2
|
+
* Copyright (c) Squirrel Chat et al., All rights reserved.
|
|
3
|
+
* SPDX-License-Identifier: BSD-3-Clause
|
|
4
|
+
*
|
|
5
|
+
* Redistribution and use in source and binary forms, with or without
|
|
6
|
+
* modification, are permitted provided that the following conditions are met:
|
|
7
|
+
*
|
|
8
|
+
* 1. Redistributions of source code must retain the above copyright notice, this
|
|
9
|
+
* list of conditions and the following disclaimer.
|
|
10
|
+
* 2. Redistributions in binary form must reproduce the above copyright notice,
|
|
11
|
+
* this list of conditions and the following disclaimer in the
|
|
12
|
+
* documentation and/or other materials provided with the distribution.
|
|
13
|
+
* 3. Neither the name of the copyright holder nor the names of its contributors
|
|
14
|
+
* may be used to endorse or promote products derived from this software without
|
|
15
|
+
* specific prior written permission.
|
|
16
|
+
*
|
|
17
|
+
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
|
|
18
|
+
* ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
|
|
19
|
+
* WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
|
|
20
|
+
* DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
|
|
21
|
+
* FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
|
|
22
|
+
* DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
|
|
23
|
+
* SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
|
|
24
|
+
* CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
|
|
25
|
+
* OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
|
|
26
|
+
* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
27
|
+
*/
|
|
28
|
+
import type { IntegersAsBigInt } from './primitive.js';
|
|
29
|
+
import { type TomlTable, type TomlTableWithoutBigInt } from './util.js';
|
|
30
|
+
export interface ParseOptions {
|
|
31
|
+
maxDepth?: number;
|
|
32
|
+
integersAsBigInt?: IntegersAsBigInt;
|
|
33
|
+
}
|
|
34
|
+
export declare function parse(toml: string, options?: ParseOptions & {
|
|
35
|
+
integersAsBigInt: Exclude<IntegersAsBigInt, undefined | false>;
|
|
36
|
+
}): TomlTable;
|
|
37
|
+
export declare function parse(toml: string, options?: ParseOptions): TomlTableWithoutBigInt;
|
|
@@ -0,0 +1,148 @@
|
|
|
1
|
+
/*!
|
|
2
|
+
* Copyright (c) Squirrel Chat et al., All rights reserved.
|
|
3
|
+
* SPDX-License-Identifier: BSD-3-Clause
|
|
4
|
+
*
|
|
5
|
+
* Redistribution and use in source and binary forms, with or without
|
|
6
|
+
* modification, are permitted provided that the following conditions are met:
|
|
7
|
+
*
|
|
8
|
+
* 1. Redistributions of source code must retain the above copyright notice, this
|
|
9
|
+
* list of conditions and the following disclaimer.
|
|
10
|
+
* 2. Redistributions in binary form must reproduce the above copyright notice,
|
|
11
|
+
* this list of conditions and the following disclaimer in the
|
|
12
|
+
* documentation and/or other materials provided with the distribution.
|
|
13
|
+
* 3. Neither the name of the copyright holder nor the names of its contributors
|
|
14
|
+
* may be used to endorse or promote products derived from this software without
|
|
15
|
+
* specific prior written permission.
|
|
16
|
+
*
|
|
17
|
+
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
|
|
18
|
+
* ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
|
|
19
|
+
* WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
|
|
20
|
+
* DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
|
|
21
|
+
* FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
|
|
22
|
+
* DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
|
|
23
|
+
* SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
|
|
24
|
+
* CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
|
|
25
|
+
* OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
|
|
26
|
+
* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
27
|
+
*/
|
|
28
|
+
import { parseKey } from './struct.js';
|
|
29
|
+
import { extractValue } from './extract.js';
|
|
30
|
+
import { skipVoid } from './util.js';
|
|
31
|
+
import { TomlError } from './error.js';
|
|
32
|
+
function peekTable(key, table, meta, type) {
|
|
33
|
+
let t = table;
|
|
34
|
+
let m = meta;
|
|
35
|
+
let k;
|
|
36
|
+
let hasOwn = false;
|
|
37
|
+
let state;
|
|
38
|
+
for (let i = 0; i < key.length; i++) {
|
|
39
|
+
if (i) {
|
|
40
|
+
t = hasOwn ? t[k] : (t[k] = {});
|
|
41
|
+
m = (state = m[k]).c;
|
|
42
|
+
if (type === 0 /* Type.DOTTED */ && (state.t === 1 /* Type.EXPLICIT */ || state.t === 2 /* Type.ARRAY */)) {
|
|
43
|
+
return null;
|
|
44
|
+
}
|
|
45
|
+
if (state.t === 2 /* Type.ARRAY */) {
|
|
46
|
+
let l = t.length - 1;
|
|
47
|
+
t = t[l];
|
|
48
|
+
m = m[l].c;
|
|
49
|
+
}
|
|
50
|
+
}
|
|
51
|
+
k = key[i];
|
|
52
|
+
if ((hasOwn = Object.hasOwn(t, k)) && m[k]?.t === 0 /* Type.DOTTED */ && m[k]?.d) {
|
|
53
|
+
return null;
|
|
54
|
+
}
|
|
55
|
+
if (!hasOwn) {
|
|
56
|
+
if (k === '__proto__') {
|
|
57
|
+
Object.defineProperty(t, k, { enumerable: true, configurable: true, writable: true });
|
|
58
|
+
Object.defineProperty(m, k, { enumerable: true, configurable: true, writable: true });
|
|
59
|
+
}
|
|
60
|
+
m[k] = {
|
|
61
|
+
t: i < key.length - 1 && type === 2 /* Type.ARRAY */
|
|
62
|
+
? 3 /* Type.ARRAY_DOTTED */
|
|
63
|
+
: type,
|
|
64
|
+
d: false,
|
|
65
|
+
i: 0,
|
|
66
|
+
c: {},
|
|
67
|
+
};
|
|
68
|
+
}
|
|
69
|
+
}
|
|
70
|
+
state = m[k];
|
|
71
|
+
if (state.t !== type && !(type === 1 /* Type.EXPLICIT */ && state.t === 3 /* Type.ARRAY_DOTTED */)) {
|
|
72
|
+
// Bad key type!
|
|
73
|
+
return null;
|
|
74
|
+
}
|
|
75
|
+
if (type === 2 /* Type.ARRAY */) {
|
|
76
|
+
if (!state.d) {
|
|
77
|
+
state.d = true;
|
|
78
|
+
t[k] = [];
|
|
79
|
+
}
|
|
80
|
+
t[k].push(t = {});
|
|
81
|
+
state.c[state.i++] = (state = { t: 1 /* Type.EXPLICIT */, d: false, i: 0, c: {} });
|
|
82
|
+
}
|
|
83
|
+
if (state.d) {
|
|
84
|
+
// Redefining a table!
|
|
85
|
+
return null;
|
|
86
|
+
}
|
|
87
|
+
state.d = true;
|
|
88
|
+
if (type === 1 /* Type.EXPLICIT */) {
|
|
89
|
+
t = hasOwn ? t[k] : (t[k] = {});
|
|
90
|
+
}
|
|
91
|
+
else if (type === 0 /* Type.DOTTED */ && hasOwn) {
|
|
92
|
+
return null;
|
|
93
|
+
}
|
|
94
|
+
return [k, t, state.c];
|
|
95
|
+
}
|
|
96
|
+
export function parse(toml, { maxDepth = 1000, integersAsBigInt } = {}) {
|
|
97
|
+
let res = {};
|
|
98
|
+
let meta = {};
|
|
99
|
+
let tbl = res;
|
|
100
|
+
let m = meta;
|
|
101
|
+
for (let ptr = skipVoid(toml, 0); ptr < toml.length;) {
|
|
102
|
+
if (toml[ptr] === '[') {
|
|
103
|
+
let isTableArray = toml[++ptr] === '[';
|
|
104
|
+
let k = parseKey(toml, ptr += +isTableArray, ']');
|
|
105
|
+
if (isTableArray) {
|
|
106
|
+
if (toml[k[1] - 1] !== ']') {
|
|
107
|
+
throw new TomlError('expected end of table declaration', {
|
|
108
|
+
toml: toml,
|
|
109
|
+
ptr: k[1] - 1,
|
|
110
|
+
});
|
|
111
|
+
}
|
|
112
|
+
k[1]++;
|
|
113
|
+
}
|
|
114
|
+
let p = peekTable(k[0], res, meta, isTableArray ? 2 /* Type.ARRAY */ : 1 /* Type.EXPLICIT */);
|
|
115
|
+
if (!p) {
|
|
116
|
+
throw new TomlError('trying to redefine an already defined table or value', {
|
|
117
|
+
toml: toml,
|
|
118
|
+
ptr: ptr,
|
|
119
|
+
});
|
|
120
|
+
}
|
|
121
|
+
m = p[2];
|
|
122
|
+
tbl = p[1];
|
|
123
|
+
ptr = k[1];
|
|
124
|
+
}
|
|
125
|
+
else {
|
|
126
|
+
let k = parseKey(toml, ptr);
|
|
127
|
+
let p = peekTable(k[0], tbl, m, 0 /* Type.DOTTED */);
|
|
128
|
+
if (!p) {
|
|
129
|
+
throw new TomlError('trying to redefine an already defined table or value', {
|
|
130
|
+
toml: toml,
|
|
131
|
+
ptr: ptr,
|
|
132
|
+
});
|
|
133
|
+
}
|
|
134
|
+
let v = extractValue(toml, k[1], void 0, maxDepth, integersAsBigInt);
|
|
135
|
+
p[1][p[0]] = v[0];
|
|
136
|
+
ptr = v[1];
|
|
137
|
+
}
|
|
138
|
+
ptr = skipVoid(toml, ptr, true);
|
|
139
|
+
if (toml[ptr] && toml[ptr] !== '\n' && toml[ptr] !== '\r') {
|
|
140
|
+
throw new TomlError('each key-value declaration must be followed by an end-of-line', {
|
|
141
|
+
toml: toml,
|
|
142
|
+
ptr: ptr
|
|
143
|
+
});
|
|
144
|
+
}
|
|
145
|
+
ptr = skipVoid(toml, ptr);
|
|
146
|
+
}
|
|
147
|
+
return res;
|
|
148
|
+
}
|
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
/*!
|
|
2
|
+
* Copyright (c) Squirrel Chat et al., All rights reserved.
|
|
3
|
+
* SPDX-License-Identifier: BSD-3-Clause
|
|
4
|
+
*
|
|
5
|
+
* Redistribution and use in source and binary forms, with or without
|
|
6
|
+
* modification, are permitted provided that the following conditions are met:
|
|
7
|
+
*
|
|
8
|
+
* 1. Redistributions of source code must retain the above copyright notice, this
|
|
9
|
+
* list of conditions and the following disclaimer.
|
|
10
|
+
* 2. Redistributions in binary form must reproduce the above copyright notice,
|
|
11
|
+
* this list of conditions and the following disclaimer in the
|
|
12
|
+
* documentation and/or other materials provided with the distribution.
|
|
13
|
+
* 3. Neither the name of the copyright holder nor the names of its contributors
|
|
14
|
+
* may be used to endorse or promote products derived from this software without
|
|
15
|
+
* specific prior written permission.
|
|
16
|
+
*
|
|
17
|
+
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
|
|
18
|
+
* ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
|
|
19
|
+
* WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
|
|
20
|
+
* DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
|
|
21
|
+
* FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
|
|
22
|
+
* DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
|
|
23
|
+
* SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
|
|
24
|
+
* CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
|
|
25
|
+
* OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
|
|
26
|
+
* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
27
|
+
*/
|
|
28
|
+
import { TomlDate } from './date.js';
|
|
29
|
+
export declare function parseString(str: string, ptr?: number, endPtr?: number): string;
|
|
30
|
+
export type IntegersAsBigInt = undefined | boolean | 'asNeeded';
|
|
31
|
+
export declare function parseValue(value: string, toml: string, ptr: number, integersAsBigInt: IntegersAsBigInt): boolean | number | bigint | TomlDate;
|
|
@@ -0,0 +1,179 @@
|
|
|
1
|
+
/*!
|
|
2
|
+
* Copyright (c) Squirrel Chat et al., All rights reserved.
|
|
3
|
+
* SPDX-License-Identifier: BSD-3-Clause
|
|
4
|
+
*
|
|
5
|
+
* Redistribution and use in source and binary forms, with or without
|
|
6
|
+
* modification, are permitted provided that the following conditions are met:
|
|
7
|
+
*
|
|
8
|
+
* 1. Redistributions of source code must retain the above copyright notice, this
|
|
9
|
+
* list of conditions and the following disclaimer.
|
|
10
|
+
* 2. Redistributions in binary form must reproduce the above copyright notice,
|
|
11
|
+
* this list of conditions and the following disclaimer in the
|
|
12
|
+
* documentation and/or other materials provided with the distribution.
|
|
13
|
+
* 3. Neither the name of the copyright holder nor the names of its contributors
|
|
14
|
+
* may be used to endorse or promote products derived from this software without
|
|
15
|
+
* specific prior written permission.
|
|
16
|
+
*
|
|
17
|
+
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
|
|
18
|
+
* ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
|
|
19
|
+
* WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
|
|
20
|
+
* DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
|
|
21
|
+
* FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
|
|
22
|
+
* DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
|
|
23
|
+
* SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
|
|
24
|
+
* CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
|
|
25
|
+
* OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
|
|
26
|
+
* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
27
|
+
*/
|
|
28
|
+
import { skipVoid } from './util.js';
|
|
29
|
+
import { TomlDate } from './date.js';
|
|
30
|
+
import { TomlError } from './error.js';
|
|
31
|
+
let INT_REGEX = /^((0x[0-9a-fA-F](_?[0-9a-fA-F])*)|(([+-]|0[ob])?\d(_?\d)*))$/;
|
|
32
|
+
let FLOAT_REGEX = /^[+-]?\d(_?\d)*(\.\d(_?\d)*)?([eE][+-]?\d(_?\d)*)?$/;
|
|
33
|
+
let LEADING_ZERO = /^[+-]?0[0-9_]/;
|
|
34
|
+
let ESCAPE_REGEX = /^[0-9a-f]{2,8}$/i;
|
|
35
|
+
let ESC_MAP = {
|
|
36
|
+
b: '\b',
|
|
37
|
+
t: '\t',
|
|
38
|
+
n: '\n',
|
|
39
|
+
f: '\f',
|
|
40
|
+
r: '\r',
|
|
41
|
+
e: '\x1b',
|
|
42
|
+
'"': '"',
|
|
43
|
+
'\\': '\\',
|
|
44
|
+
};
|
|
45
|
+
export function parseString(str, ptr = 0, endPtr = str.length) {
|
|
46
|
+
let isLiteral = str[ptr] === '\'';
|
|
47
|
+
let isMultiline = str[ptr++] === str[ptr] && str[ptr] === str[ptr + 1];
|
|
48
|
+
if (isMultiline) {
|
|
49
|
+
endPtr -= 2;
|
|
50
|
+
if (str[ptr += 2] === '\r')
|
|
51
|
+
ptr++;
|
|
52
|
+
if (str[ptr] === '\n')
|
|
53
|
+
ptr++;
|
|
54
|
+
}
|
|
55
|
+
let tmp = 0;
|
|
56
|
+
let isEscape;
|
|
57
|
+
let parsed = '';
|
|
58
|
+
let sliceStart = ptr;
|
|
59
|
+
while (ptr < endPtr - 1) {
|
|
60
|
+
let c = str[ptr++];
|
|
61
|
+
if (c === '\n' || (c === '\r' && str[ptr] === '\n')) {
|
|
62
|
+
if (!isMultiline) {
|
|
63
|
+
throw new TomlError('newlines are not allowed in strings', {
|
|
64
|
+
toml: str,
|
|
65
|
+
ptr: ptr - 1,
|
|
66
|
+
});
|
|
67
|
+
}
|
|
68
|
+
}
|
|
69
|
+
else if ((c < '\x20' && c !== '\t') || c === '\x7f') {
|
|
70
|
+
throw new TomlError('control characters are not allowed in strings', {
|
|
71
|
+
toml: str,
|
|
72
|
+
ptr: ptr - 1,
|
|
73
|
+
});
|
|
74
|
+
}
|
|
75
|
+
if (isEscape) {
|
|
76
|
+
isEscape = false;
|
|
77
|
+
if (c === 'x' || c === 'u' || c === 'U') {
|
|
78
|
+
// Unicode escape
|
|
79
|
+
let code = str.slice(ptr, (ptr += (c === 'x' ? 2 : c === 'u' ? 4 : 8)));
|
|
80
|
+
if (!ESCAPE_REGEX.test(code)) {
|
|
81
|
+
throw new TomlError('invalid unicode escape', {
|
|
82
|
+
toml: str,
|
|
83
|
+
ptr: tmp,
|
|
84
|
+
});
|
|
85
|
+
}
|
|
86
|
+
try {
|
|
87
|
+
parsed += String.fromCodePoint(parseInt(code, 16));
|
|
88
|
+
}
|
|
89
|
+
catch {
|
|
90
|
+
throw new TomlError('invalid unicode escape', {
|
|
91
|
+
toml: str,
|
|
92
|
+
ptr: tmp,
|
|
93
|
+
});
|
|
94
|
+
}
|
|
95
|
+
}
|
|
96
|
+
else if (isMultiline && (c === '\n' || c === ' ' || c === '\t' || c === '\r')) {
|
|
97
|
+
// Multiline escape
|
|
98
|
+
ptr = skipVoid(str, ptr - 1, true);
|
|
99
|
+
if (str[ptr] !== '\n' && str[ptr] !== '\r') {
|
|
100
|
+
throw new TomlError('invalid escape: only line-ending whitespace may be escaped', {
|
|
101
|
+
toml: str,
|
|
102
|
+
ptr: tmp,
|
|
103
|
+
});
|
|
104
|
+
}
|
|
105
|
+
ptr = skipVoid(str, ptr);
|
|
106
|
+
}
|
|
107
|
+
else if (c in ESC_MAP) {
|
|
108
|
+
// Classic escape
|
|
109
|
+
parsed += ESC_MAP[c];
|
|
110
|
+
}
|
|
111
|
+
else {
|
|
112
|
+
throw new TomlError('unrecognized escape sequence', {
|
|
113
|
+
toml: str,
|
|
114
|
+
ptr: tmp,
|
|
115
|
+
});
|
|
116
|
+
}
|
|
117
|
+
sliceStart = ptr;
|
|
118
|
+
}
|
|
119
|
+
else if (!isLiteral && c === '\\') {
|
|
120
|
+
tmp = ptr - 1;
|
|
121
|
+
isEscape = true;
|
|
122
|
+
parsed += str.slice(sliceStart, tmp);
|
|
123
|
+
}
|
|
124
|
+
}
|
|
125
|
+
return parsed + str.slice(sliceStart, endPtr - 1);
|
|
126
|
+
}
|
|
127
|
+
export function parseValue(value, toml, ptr, integersAsBigInt) {
|
|
128
|
+
// Constant values
|
|
129
|
+
if (value === 'true')
|
|
130
|
+
return true;
|
|
131
|
+
if (value === 'false')
|
|
132
|
+
return false;
|
|
133
|
+
if (value === '-inf')
|
|
134
|
+
return -Infinity;
|
|
135
|
+
if (value === 'inf' || value === '+inf')
|
|
136
|
+
return Infinity;
|
|
137
|
+
if (value === 'nan' || value === '+nan' || value === '-nan')
|
|
138
|
+
return NaN;
|
|
139
|
+
// Avoid FP representation of -0
|
|
140
|
+
if (value === '-0')
|
|
141
|
+
return integersAsBigInt ? 0n : 0;
|
|
142
|
+
// Numbers
|
|
143
|
+
let isInt = INT_REGEX.test(value);
|
|
144
|
+
if (isInt || FLOAT_REGEX.test(value)) {
|
|
145
|
+
if (LEADING_ZERO.test(value)) {
|
|
146
|
+
throw new TomlError('leading zeroes are not allowed', {
|
|
147
|
+
toml: toml,
|
|
148
|
+
ptr: ptr,
|
|
149
|
+
});
|
|
150
|
+
}
|
|
151
|
+
value = value.replace(/_/g, '');
|
|
152
|
+
let numeric = +value;
|
|
153
|
+
if (isNaN(numeric)) {
|
|
154
|
+
throw new TomlError('invalid number', {
|
|
155
|
+
toml: toml,
|
|
156
|
+
ptr: ptr,
|
|
157
|
+
});
|
|
158
|
+
}
|
|
159
|
+
if (isInt) {
|
|
160
|
+
if ((isInt = !Number.isSafeInteger(numeric)) && !integersAsBigInt) {
|
|
161
|
+
throw new TomlError('integer value cannot be represented losslessly', {
|
|
162
|
+
toml: toml,
|
|
163
|
+
ptr: ptr,
|
|
164
|
+
});
|
|
165
|
+
}
|
|
166
|
+
if (isInt || integersAsBigInt === true)
|
|
167
|
+
numeric = BigInt(value);
|
|
168
|
+
}
|
|
169
|
+
return numeric;
|
|
170
|
+
}
|
|
171
|
+
const date = new TomlDate(value);
|
|
172
|
+
if (!date.isValid()) {
|
|
173
|
+
throw new TomlError('invalid value', {
|
|
174
|
+
toml: toml,
|
|
175
|
+
ptr: ptr,
|
|
176
|
+
});
|
|
177
|
+
}
|
|
178
|
+
return date;
|
|
179
|
+
}
|
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
/*!
|
|
2
|
+
* Copyright (c) Squirrel Chat et al., All rights reserved.
|
|
3
|
+
* SPDX-License-Identifier: BSD-3-Clause
|
|
4
|
+
*
|
|
5
|
+
* Redistribution and use in source and binary forms, with or without
|
|
6
|
+
* modification, are permitted provided that the following conditions are met:
|
|
7
|
+
*
|
|
8
|
+
* 1. Redistributions of source code must retain the above copyright notice, this
|
|
9
|
+
* list of conditions and the following disclaimer.
|
|
10
|
+
* 2. Redistributions in binary form must reproduce the above copyright notice,
|
|
11
|
+
* this list of conditions and the following disclaimer in the
|
|
12
|
+
* documentation and/or other materials provided with the distribution.
|
|
13
|
+
* 3. Neither the name of the copyright holder nor the names of its contributors
|
|
14
|
+
* may be used to endorse or promote products derived from this software without
|
|
15
|
+
* specific prior written permission.
|
|
16
|
+
*
|
|
17
|
+
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
|
|
18
|
+
* ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
|
|
19
|
+
* WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
|
|
20
|
+
* DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
|
|
21
|
+
* FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
|
|
22
|
+
* DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
|
|
23
|
+
* SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
|
|
24
|
+
* CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
|
|
25
|
+
* OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
|
|
26
|
+
* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
27
|
+
*/
|
|
28
|
+
export declare function stringify(obj: any, { maxDepth, numbersAsFloat }?: {
|
|
29
|
+
maxDepth?: number;
|
|
30
|
+
numbersAsFloat?: boolean;
|
|
31
|
+
}): string;
|
|
@@ -0,0 +1,167 @@
|
|
|
1
|
+
/*!
|
|
2
|
+
* Copyright (c) Squirrel Chat et al., All rights reserved.
|
|
3
|
+
* SPDX-License-Identifier: BSD-3-Clause
|
|
4
|
+
*
|
|
5
|
+
* Redistribution and use in source and binary forms, with or without
|
|
6
|
+
* modification, are permitted provided that the following conditions are met:
|
|
7
|
+
*
|
|
8
|
+
* 1. Redistributions of source code must retain the above copyright notice, this
|
|
9
|
+
* list of conditions and the following disclaimer.
|
|
10
|
+
* 2. Redistributions in binary form must reproduce the above copyright notice,
|
|
11
|
+
* this list of conditions and the following disclaimer in the
|
|
12
|
+
* documentation and/or other materials provided with the distribution.
|
|
13
|
+
* 3. Neither the name of the copyright holder nor the names of its contributors
|
|
14
|
+
* may be used to endorse or promote products derived from this software without
|
|
15
|
+
* specific prior written permission.
|
|
16
|
+
*
|
|
17
|
+
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
|
|
18
|
+
* ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
|
|
19
|
+
* WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
|
|
20
|
+
* DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
|
|
21
|
+
* FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
|
|
22
|
+
* DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
|
|
23
|
+
* SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
|
|
24
|
+
* CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
|
|
25
|
+
* OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
|
|
26
|
+
* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
27
|
+
*/
|
|
28
|
+
let BARE_KEY = /^[a-z0-9-_]+$/i;
|
|
29
|
+
function extendedTypeOf(obj) {
|
|
30
|
+
let type = typeof obj;
|
|
31
|
+
if (type === 'object') {
|
|
32
|
+
if (Array.isArray(obj))
|
|
33
|
+
return 'array';
|
|
34
|
+
if (obj instanceof Date)
|
|
35
|
+
return 'date';
|
|
36
|
+
}
|
|
37
|
+
return type;
|
|
38
|
+
}
|
|
39
|
+
function isArrayOfTables(obj) {
|
|
40
|
+
for (let i = 0; i < obj.length; i++) {
|
|
41
|
+
if (extendedTypeOf(obj[i]) !== 'object')
|
|
42
|
+
return false;
|
|
43
|
+
}
|
|
44
|
+
return obj.length != 0;
|
|
45
|
+
}
|
|
46
|
+
function formatString(s) {
|
|
47
|
+
return JSON.stringify(s).replace(/\x7f/g, '\\u007f');
|
|
48
|
+
}
|
|
49
|
+
function stringifyValue(val, type, depth, numberAsFloat) {
|
|
50
|
+
if (depth === 0) {
|
|
51
|
+
throw new Error('Could not stringify the object: maximum object depth exceeded');
|
|
52
|
+
}
|
|
53
|
+
if (type === 'number') {
|
|
54
|
+
if (isNaN(val))
|
|
55
|
+
return 'nan';
|
|
56
|
+
if (val === Infinity)
|
|
57
|
+
return 'inf';
|
|
58
|
+
if (val === -Infinity)
|
|
59
|
+
return '-inf';
|
|
60
|
+
if (numberAsFloat && Number.isInteger(val))
|
|
61
|
+
return val.toFixed(1);
|
|
62
|
+
return val.toString();
|
|
63
|
+
}
|
|
64
|
+
if (type === 'bigint' || type === 'boolean') {
|
|
65
|
+
return val.toString();
|
|
66
|
+
}
|
|
67
|
+
if (type === 'string') {
|
|
68
|
+
return formatString(val);
|
|
69
|
+
}
|
|
70
|
+
if (type === 'date') {
|
|
71
|
+
if (isNaN(val.getTime())) {
|
|
72
|
+
throw new TypeError('cannot serialize invalid date');
|
|
73
|
+
}
|
|
74
|
+
return val.toISOString();
|
|
75
|
+
}
|
|
76
|
+
if (type === 'object') {
|
|
77
|
+
return stringifyInlineTable(val, depth, numberAsFloat);
|
|
78
|
+
}
|
|
79
|
+
if (type === 'array') {
|
|
80
|
+
return stringifyArray(val, depth, numberAsFloat);
|
|
81
|
+
}
|
|
82
|
+
}
|
|
83
|
+
function stringifyInlineTable(obj, depth, numberAsFloat) {
|
|
84
|
+
let keys = Object.keys(obj);
|
|
85
|
+
if (keys.length === 0)
|
|
86
|
+
return '{}';
|
|
87
|
+
let res = '{ ';
|
|
88
|
+
for (let i = 0; i < keys.length; i++) {
|
|
89
|
+
let k = keys[i];
|
|
90
|
+
if (i)
|
|
91
|
+
res += ', ';
|
|
92
|
+
res += BARE_KEY.test(k) ? k : formatString(k);
|
|
93
|
+
res += ' = ';
|
|
94
|
+
res += stringifyValue(obj[k], extendedTypeOf(obj[k]), depth - 1, numberAsFloat);
|
|
95
|
+
}
|
|
96
|
+
return res + ' }';
|
|
97
|
+
}
|
|
98
|
+
function stringifyArray(array, depth, numberAsFloat) {
|
|
99
|
+
if (array.length === 0)
|
|
100
|
+
return '[]';
|
|
101
|
+
let res = '[ ';
|
|
102
|
+
for (let i = 0; i < array.length; i++) {
|
|
103
|
+
if (i)
|
|
104
|
+
res += ', ';
|
|
105
|
+
if (array[i] === null || array[i] === void 0) {
|
|
106
|
+
throw new TypeError('arrays cannot contain null or undefined values');
|
|
107
|
+
}
|
|
108
|
+
res += stringifyValue(array[i], extendedTypeOf(array[i]), depth - 1, numberAsFloat);
|
|
109
|
+
}
|
|
110
|
+
return res + ' ]';
|
|
111
|
+
}
|
|
112
|
+
function stringifyArrayTable(array, key, depth, numberAsFloat) {
|
|
113
|
+
if (depth === 0) {
|
|
114
|
+
throw new Error('Could not stringify the object: maximum object depth exceeded');
|
|
115
|
+
}
|
|
116
|
+
let res = '';
|
|
117
|
+
for (let i = 0; i < array.length; i++) {
|
|
118
|
+
res += `${res && '\n'}[[${key}]]\n`;
|
|
119
|
+
res += stringifyTable(0, array[i], key, depth, numberAsFloat);
|
|
120
|
+
}
|
|
121
|
+
return res;
|
|
122
|
+
}
|
|
123
|
+
function stringifyTable(tableKey, obj, prefix, depth, numberAsFloat) {
|
|
124
|
+
if (depth === 0) {
|
|
125
|
+
throw new Error('Could not stringify the object: maximum object depth exceeded');
|
|
126
|
+
}
|
|
127
|
+
let preamble = '';
|
|
128
|
+
let tables = '';
|
|
129
|
+
let keys = Object.keys(obj);
|
|
130
|
+
for (let i = 0; i < keys.length; i++) {
|
|
131
|
+
let k = keys[i];
|
|
132
|
+
if (obj[k] !== null && obj[k] !== void 0) {
|
|
133
|
+
let type = extendedTypeOf(obj[k]);
|
|
134
|
+
if (type === 'symbol' || type === 'function') {
|
|
135
|
+
throw new TypeError(`cannot serialize values of type '${type}'`);
|
|
136
|
+
}
|
|
137
|
+
let key = BARE_KEY.test(k) ? k : formatString(k);
|
|
138
|
+
if (type === 'array' && isArrayOfTables(obj[k])) {
|
|
139
|
+
tables += (tables && '\n') + stringifyArrayTable(obj[k], prefix ? `${prefix}.${key}` : key, depth - 1, numberAsFloat);
|
|
140
|
+
}
|
|
141
|
+
else if (type === 'object') {
|
|
142
|
+
let tblKey = prefix ? `${prefix}.${key}` : key;
|
|
143
|
+
tables += (tables && '\n') + stringifyTable(tblKey, obj[k], tblKey, depth - 1, numberAsFloat);
|
|
144
|
+
}
|
|
145
|
+
else {
|
|
146
|
+
preamble += key;
|
|
147
|
+
preamble += ' = ';
|
|
148
|
+
preamble += stringifyValue(obj[k], type, depth, numberAsFloat);
|
|
149
|
+
preamble += '\n';
|
|
150
|
+
}
|
|
151
|
+
}
|
|
152
|
+
}
|
|
153
|
+
if (tableKey && (preamble || !tables)) // Create table only if necessary
|
|
154
|
+
preamble = preamble ? `[${tableKey}]\n${preamble}` : `[${tableKey}]`;
|
|
155
|
+
return preamble && tables
|
|
156
|
+
? `${preamble}\n${tables}`
|
|
157
|
+
: preamble || tables;
|
|
158
|
+
}
|
|
159
|
+
export function stringify(obj, { maxDepth = 1000, numbersAsFloat = false } = {}) {
|
|
160
|
+
if (extendedTypeOf(obj) !== 'object') {
|
|
161
|
+
throw new TypeError('stringify can only be called with an object');
|
|
162
|
+
}
|
|
163
|
+
let str = stringifyTable(0, obj, '', maxDepth, numbersAsFloat);
|
|
164
|
+
if (str[str.length - 1] !== '\n')
|
|
165
|
+
return str + '\n';
|
|
166
|
+
return str;
|
|
167
|
+
}
|