shelfware 0.0.1 → 0.1.1

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.
Files changed (206) hide show
  1. package/.output/nitro.json +15 -0
  2. package/.output/public/_nuxt/6IstVYrV.js +1 -0
  3. package/.output/public/_nuxt/9C5WUlLE.js +36 -0
  4. package/.output/public/_nuxt/BDNMzG2s.js +1 -0
  5. package/.output/public/_nuxt/BW3xJdEx.js +1 -0
  6. package/.output/public/_nuxt/BXXtFil5.js +1 -0
  7. package/.output/public/_nuxt/BZuUK3cr.js +1 -0
  8. package/.output/public/_nuxt/BeLyMmd4.js +1 -0
  9. package/.output/public/_nuxt/C_VgD9ZI.js +3 -0
  10. package/.output/public/_nuxt/DB5Vxbte.js +2 -0
  11. package/.output/public/_nuxt/DMg0j7gv.js +14 -0
  12. package/.output/public/_nuxt/builds/latest.json +1 -0
  13. package/.output/public/_nuxt/builds/meta/e0d2b6a3-3a30-44b7-8c79-a56f66400005.json +1 -0
  14. package/.output/public/_nuxt/entry.b3_DJTEt.css +2 -0
  15. package/.output/public/_nuxt/error-404.CHsn7XF-.css +1 -0
  16. package/.output/public/_nuxt/error-500.Bawx2bLr.css +1 -0
  17. package/.output/server/chunks/_/api-handler.mjs +44 -0
  18. package/.output/server/chunks/_/batch.mjs +27 -0
  19. package/.output/server/chunks/_/catalog.mjs +1115 -0
  20. package/.output/server/chunks/_/detail.mjs +16 -0
  21. package/.output/server/chunks/_/error-500.mjs +19 -0
  22. package/.output/server/chunks/_/quarantine.mjs +159 -0
  23. package/.output/server/chunks/nitro/nitro.mjs +5399 -0
  24. package/.output/server/chunks/routes/api/_..._.mjs +16 -0
  25. package/.output/server/chunks/routes/api/health.get.mjs +13 -0
  26. package/.output/server/chunks/routes/api/skills/_id/file.get.mjs +25 -0
  27. package/.output/server/chunks/routes/api/skills/_id_.get.mjs +25 -0
  28. package/.output/server/chunks/routes/api/skills/_id_.put.mjs +74 -0
  29. package/.output/server/chunks/routes/api/skills/delete.post.mjs +48 -0
  30. package/.output/server/chunks/routes/api/skills/quarantine.post.mjs +26 -0
  31. package/.output/server/chunks/routes/api/skills/restore.post.mjs +26 -0
  32. package/.output/server/chunks/routes/api/skills.get.mjs +41 -0
  33. package/.output/server/chunks/routes/renderer.mjs +341 -0
  34. package/.output/server/chunks/virtual/_virtual_spa-template.mjs +3 -0
  35. package/.output/server/chunks/virtual/precomputed.mjs +3 -0
  36. package/.output/server/index.mjs +9 -0
  37. package/.output/server/node_modules/@babel/parser/lib/index.js +14611 -0
  38. package/.output/server/node_modules/@babel/parser/package.json +50 -0
  39. package/.output/server/node_modules/@vue/compiler-core/dist/compiler-core.cjs.prod.js +6801 -0
  40. package/.output/server/node_modules/@vue/compiler-core/package.json +58 -0
  41. package/.output/server/node_modules/@vue/compiler-dom/dist/compiler-dom.cjs.prod.js +692 -0
  42. package/.output/server/node_modules/@vue/compiler-dom/package.json +57 -0
  43. package/.output/server/node_modules/@vue/compiler-ssr/dist/compiler-ssr.cjs.js +1420 -0
  44. package/.output/server/node_modules/@vue/compiler-ssr/package.json +34 -0
  45. package/.output/server/node_modules/@vue/reactivity/dist/reactivity.cjs.prod.js +1903 -0
  46. package/.output/server/node_modules/@vue/reactivity/package.json +55 -0
  47. package/.output/server/node_modules/@vue/runtime-core/dist/runtime-core.cjs.prod.js +6980 -0
  48. package/.output/server/node_modules/@vue/runtime-core/package.json +52 -0
  49. package/.output/server/node_modules/@vue/runtime-dom/dist/runtime-dom.cjs.prod.js +1867 -0
  50. package/.output/server/node_modules/@vue/runtime-dom/package.json +60 -0
  51. package/.output/server/node_modules/@vue/server-renderer/dist/server-renderer.cjs.prod.js +904 -0
  52. package/.output/server/node_modules/@vue/server-renderer/package.json +53 -0
  53. package/.output/server/node_modules/@vue/shared/dist/shared.cjs.prod.js +636 -0
  54. package/.output/server/node_modules/@vue/shared/package.json +47 -0
  55. package/.output/server/node_modules/devalue/index.js +17 -0
  56. package/.output/server/node_modules/devalue/package.json +39 -0
  57. package/.output/server/node_modules/devalue/src/base64.js +60 -0
  58. package/.output/server/node_modules/devalue/src/constants.js +12 -0
  59. package/.output/server/node_modules/devalue/src/operations.js +193 -0
  60. package/.output/server/node_modules/devalue/src/parse.js +274 -0
  61. package/.output/server/node_modules/devalue/src/stringify.js +428 -0
  62. package/.output/server/node_modules/devalue/src/uneval.js +606 -0
  63. package/.output/server/node_modules/devalue/src/utils.js +185 -0
  64. package/.output/server/node_modules/entities/dist/commonjs/decode-codepoint.js +77 -0
  65. package/.output/server/node_modules/entities/dist/commonjs/decode.js +568 -0
  66. package/.output/server/node_modules/entities/dist/commonjs/generated/decode-data-html.js +7 -0
  67. package/.output/server/node_modules/entities/dist/commonjs/generated/decode-data-xml.js +7 -0
  68. package/.output/server/node_modules/entities/dist/commonjs/internal/bin-trie-flags.js +21 -0
  69. package/.output/server/node_modules/entities/dist/commonjs/internal/decode-shared.js +31 -0
  70. package/.output/server/node_modules/entities/dist/commonjs/package.json +3 -0
  71. package/.output/server/node_modules/entities/package.json +120 -0
  72. package/.output/server/node_modules/estree-walker/dist/umd/estree-walker.js +344 -0
  73. package/.output/server/node_modules/estree-walker/package.json +37 -0
  74. package/.output/server/node_modules/hookable/dist/index.mjs +257 -0
  75. package/.output/server/node_modules/hookable/package.json +53 -0
  76. package/.output/server/node_modules/nostics/dist/formatters/ansi.mjs +19 -0
  77. package/.output/server/node_modules/nostics/dist/index.mjs +187 -0
  78. package/.output/server/node_modules/nostics/package.json +125 -0
  79. package/.output/server/node_modules/source-map-js/lib/array-set.js +121 -0
  80. package/.output/server/node_modules/source-map-js/lib/base64-vlq.js +140 -0
  81. package/.output/server/node_modules/source-map-js/lib/base64.js +67 -0
  82. package/.output/server/node_modules/source-map-js/lib/binary-search.js +111 -0
  83. package/.output/server/node_modules/source-map-js/lib/mapping-list.js +79 -0
  84. package/.output/server/node_modules/source-map-js/lib/quick-sort.js +132 -0
  85. package/.output/server/node_modules/source-map-js/lib/source-map-consumer.js +1188 -0
  86. package/.output/server/node_modules/source-map-js/lib/source-map-generator.js +444 -0
  87. package/.output/server/node_modules/source-map-js/lib/source-node.js +413 -0
  88. package/.output/server/node_modules/source-map-js/lib/util.js +594 -0
  89. package/.output/server/node_modules/source-map-js/package.json +71 -0
  90. package/.output/server/node_modules/source-map-js/source-map.js +8 -0
  91. package/.output/server/node_modules/ufo/dist/index.mjs +645 -0
  92. package/.output/server/node_modules/ufo/package.json +48 -0
  93. package/.output/server/node_modules/unhead/dist/client.mjs +22 -0
  94. package/.output/server/node_modules/unhead/dist/legacy.mjs +33 -0
  95. package/.output/server/node_modules/unhead/dist/minify.mjs +183 -0
  96. package/.output/server/node_modules/unhead/dist/parser.mjs +518 -0
  97. package/.output/server/node_modules/unhead/dist/plugins.mjs +720 -0
  98. package/.output/server/node_modules/unhead/dist/server.mjs +99 -0
  99. package/.output/server/node_modules/unhead/dist/shared/unhead.-hZVKou0.mjs +400 -0
  100. package/.output/server/node_modules/unhead/dist/shared/unhead.BEmVMkeA.mjs +673 -0
  101. package/.output/server/node_modules/unhead/dist/shared/unhead.BGFxPGPQ.mjs +47 -0
  102. package/.output/server/node_modules/unhead/dist/shared/unhead.BQWSw36o.mjs +192 -0
  103. package/.output/server/node_modules/unhead/dist/shared/unhead.Bf_fPVYA.mjs +6 -0
  104. package/.output/server/node_modules/unhead/dist/shared/unhead.Bjbp1C8D.mjs +224 -0
  105. package/.output/server/node_modules/unhead/dist/shared/unhead.Bm4Y6XQI.mjs +17 -0
  106. package/.output/server/node_modules/unhead/dist/shared/unhead.C5Bksi2B.mjs +49 -0
  107. package/.output/server/node_modules/unhead/dist/shared/unhead.CGPOfp5O.mjs +32 -0
  108. package/.output/server/node_modules/unhead/dist/shared/unhead.CHEy9ana.mjs +7 -0
  109. package/.output/server/node_modules/unhead/dist/shared/unhead.D7HkBzZn.mjs +59 -0
  110. package/.output/server/node_modules/unhead/dist/shared/unhead.Dssd7L5I.mjs +196 -0
  111. package/.output/server/node_modules/unhead/dist/shared/unhead.jEy9BmRq.mjs +264 -0
  112. package/.output/server/node_modules/unhead/dist/shared/unhead.oZ7pkTV1.mjs +19 -0
  113. package/.output/server/node_modules/unhead/dist/shared/unhead.tQnRaXfX.mjs +240 -0
  114. package/.output/server/node_modules/unhead/dist/stream/client.mjs +33 -0
  115. package/.output/server/node_modules/unhead/dist/stream/iife.mjs +2 -0
  116. package/.output/server/node_modules/unhead/dist/stream/server.mjs +445 -0
  117. package/.output/server/node_modules/unhead/dist/utils.mjs +7 -0
  118. package/.output/server/node_modules/unhead/package.json +179 -0
  119. package/.output/server/node_modules/vue/dist/vue.cjs.js +80 -0
  120. package/.output/server/node_modules/vue/dist/vue.cjs.prod.js +66 -0
  121. package/.output/server/node_modules/vue/index.js +7 -0
  122. package/.output/server/node_modules/vue/index.mjs +1 -0
  123. package/.output/server/node_modules/vue/package.json +112 -0
  124. package/.output/server/node_modules/vue/server-renderer/index.mjs +1 -0
  125. package/.output/server/node_modules/vue-bundle-renderer/dist/runtime.mjs +278 -0
  126. package/.output/server/node_modules/vue-bundle-renderer/package.json +54 -0
  127. package/.output/server/node_modules/yaml/dist/compose/compose-collection.js +90 -0
  128. package/.output/server/node_modules/yaml/dist/compose/compose-doc.js +45 -0
  129. package/.output/server/node_modules/yaml/dist/compose/compose-node.js +112 -0
  130. package/.output/server/node_modules/yaml/dist/compose/compose-scalar.js +88 -0
  131. package/.output/server/node_modules/yaml/dist/compose/composer.js +224 -0
  132. package/.output/server/node_modules/yaml/dist/compose/resolve-block-map.js +117 -0
  133. package/.output/server/node_modules/yaml/dist/compose/resolve-block-scalar.js +200 -0
  134. package/.output/server/node_modules/yaml/dist/compose/resolve-block-seq.js +51 -0
  135. package/.output/server/node_modules/yaml/dist/compose/resolve-end.js +39 -0
  136. package/.output/server/node_modules/yaml/dist/compose/resolve-flow-collection.js +209 -0
  137. package/.output/server/node_modules/yaml/dist/compose/resolve-flow-scalar.js +227 -0
  138. package/.output/server/node_modules/yaml/dist/compose/resolve-props.js +148 -0
  139. package/.output/server/node_modules/yaml/dist/compose/util-contains-newline.js +36 -0
  140. package/.output/server/node_modules/yaml/dist/compose/util-empty-scalar-position.js +28 -0
  141. package/.output/server/node_modules/yaml/dist/compose/util-flow-indent-check.js +17 -0
  142. package/.output/server/node_modules/yaml/dist/compose/util-map-includes.js +15 -0
  143. package/.output/server/node_modules/yaml/dist/doc/Document.js +337 -0
  144. package/.output/server/node_modules/yaml/dist/doc/anchors.js +76 -0
  145. package/.output/server/node_modules/yaml/dist/doc/applyReviver.js +57 -0
  146. package/.output/server/node_modules/yaml/dist/doc/createNode.js +90 -0
  147. package/.output/server/node_modules/yaml/dist/doc/directives.js +178 -0
  148. package/.output/server/node_modules/yaml/dist/errors.js +62 -0
  149. package/.output/server/node_modules/yaml/dist/index.js +50 -0
  150. package/.output/server/node_modules/yaml/dist/log.js +19 -0
  151. package/.output/server/node_modules/yaml/dist/nodes/Alias.js +118 -0
  152. package/.output/server/node_modules/yaml/dist/nodes/Collection.js +151 -0
  153. package/.output/server/node_modules/yaml/dist/nodes/Node.js +40 -0
  154. package/.output/server/node_modules/yaml/dist/nodes/Pair.js +39 -0
  155. package/.output/server/node_modules/yaml/dist/nodes/Scalar.js +27 -0
  156. package/.output/server/node_modules/yaml/dist/nodes/YAMLMap.js +147 -0
  157. package/.output/server/node_modules/yaml/dist/nodes/YAMLSeq.js +115 -0
  158. package/.output/server/node_modules/yaml/dist/nodes/addPairToJSMap.js +65 -0
  159. package/.output/server/node_modules/yaml/dist/nodes/identity.js +53 -0
  160. package/.output/server/node_modules/yaml/dist/nodes/toJS.js +39 -0
  161. package/.output/server/node_modules/yaml/dist/parse/cst-scalar.js +218 -0
  162. package/.output/server/node_modules/yaml/dist/parse/cst-stringify.js +63 -0
  163. package/.output/server/node_modules/yaml/dist/parse/cst-visit.js +99 -0
  164. package/.output/server/node_modules/yaml/dist/parse/cst.js +112 -0
  165. package/.output/server/node_modules/yaml/dist/parse/lexer.js +723 -0
  166. package/.output/server/node_modules/yaml/dist/parse/line-counter.js +41 -0
  167. package/.output/server/node_modules/yaml/dist/parse/parser.js +980 -0
  168. package/.output/server/node_modules/yaml/dist/public-api.js +107 -0
  169. package/.output/server/node_modules/yaml/dist/schema/Schema.js +39 -0
  170. package/.output/server/node_modules/yaml/dist/schema/common/map.js +19 -0
  171. package/.output/server/node_modules/yaml/dist/schema/common/null.js +17 -0
  172. package/.output/server/node_modules/yaml/dist/schema/common/seq.js +19 -0
  173. package/.output/server/node_modules/yaml/dist/schema/common/string.js +16 -0
  174. package/.output/server/node_modules/yaml/dist/schema/core/bool.js +21 -0
  175. package/.output/server/node_modules/yaml/dist/schema/core/float.js +47 -0
  176. package/.output/server/node_modules/yaml/dist/schema/core/int.js +42 -0
  177. package/.output/server/node_modules/yaml/dist/schema/core/schema.js +25 -0
  178. package/.output/server/node_modules/yaml/dist/schema/json/schema.js +64 -0
  179. package/.output/server/node_modules/yaml/dist/schema/tags.js +99 -0
  180. package/.output/server/node_modules/yaml/dist/schema/yaml-1.1/binary.js +70 -0
  181. package/.output/server/node_modules/yaml/dist/schema/yaml-1.1/bool.js +29 -0
  182. package/.output/server/node_modules/yaml/dist/schema/yaml-1.1/float.js +50 -0
  183. package/.output/server/node_modules/yaml/dist/schema/yaml-1.1/int.js +76 -0
  184. package/.output/server/node_modules/yaml/dist/schema/yaml-1.1/merge.js +71 -0
  185. package/.output/server/node_modules/yaml/dist/schema/yaml-1.1/omap.js +77 -0
  186. package/.output/server/node_modules/yaml/dist/schema/yaml-1.1/pairs.js +82 -0
  187. package/.output/server/node_modules/yaml/dist/schema/yaml-1.1/schema.js +41 -0
  188. package/.output/server/node_modules/yaml/dist/schema/yaml-1.1/set.js +96 -0
  189. package/.output/server/node_modules/yaml/dist/schema/yaml-1.1/timestamp.js +105 -0
  190. package/.output/server/node_modules/yaml/dist/stringify/foldFlowLines.js +151 -0
  191. package/.output/server/node_modules/yaml/dist/stringify/stringify.js +132 -0
  192. package/.output/server/node_modules/yaml/dist/stringify/stringifyCollection.js +155 -0
  193. package/.output/server/node_modules/yaml/dist/stringify/stringifyComment.js +24 -0
  194. package/.output/server/node_modules/yaml/dist/stringify/stringifyDocument.js +87 -0
  195. package/.output/server/node_modules/yaml/dist/stringify/stringifyNumber.js +27 -0
  196. package/.output/server/node_modules/yaml/dist/stringify/stringifyPair.js +152 -0
  197. package/.output/server/node_modules/yaml/dist/stringify/stringifyString.js +338 -0
  198. package/.output/server/node_modules/yaml/dist/visit.js +236 -0
  199. package/.output/server/node_modules/yaml/package.json +97 -0
  200. package/.output/server/package.json +28 -0
  201. package/LICENSE +21 -0
  202. package/README.md +57 -1
  203. package/bin/launch.mjs +216 -0
  204. package/bin/shelfware.mjs +11 -0
  205. package/package.json +64 -5
  206. package/cli.mjs +0 -3
@@ -0,0 +1,76 @@
1
+ 'use strict';
2
+
3
+ var stringifyNumber = require('../../stringify/stringifyNumber.js');
4
+
5
+ const intIdentify = (value) => typeof value === 'bigint' || Number.isInteger(value);
6
+ function intResolve(str, offset, radix, { intAsBigInt }) {
7
+ const sign = str[0];
8
+ if (sign === '-' || sign === '+')
9
+ offset += 1;
10
+ str = str.substring(offset).replace(/_/g, '');
11
+ if (intAsBigInt) {
12
+ switch (radix) {
13
+ case 2:
14
+ str = `0b${str}`;
15
+ break;
16
+ case 8:
17
+ str = `0o${str}`;
18
+ break;
19
+ case 16:
20
+ str = `0x${str}`;
21
+ break;
22
+ }
23
+ const n = BigInt(str);
24
+ return sign === '-' ? BigInt(-1) * n : n;
25
+ }
26
+ const n = parseInt(str, radix);
27
+ return sign === '-' ? -1 * n : n;
28
+ }
29
+ function intStringify(node, radix, prefix) {
30
+ const { value } = node;
31
+ if (intIdentify(value)) {
32
+ const str = value.toString(radix);
33
+ return value < 0 ? '-' + prefix + str.substr(1) : prefix + str;
34
+ }
35
+ return stringifyNumber.stringifyNumber(node);
36
+ }
37
+ const intBin = {
38
+ identify: intIdentify,
39
+ default: true,
40
+ tag: 'tag:yaml.org,2002:int',
41
+ format: 'BIN',
42
+ test: /^[-+]?0b[0-1_]+$/,
43
+ resolve: (str, _onError, opt) => intResolve(str, 2, 2, opt),
44
+ stringify: node => intStringify(node, 2, '0b')
45
+ };
46
+ const intOct = {
47
+ identify: intIdentify,
48
+ default: true,
49
+ tag: 'tag:yaml.org,2002:int',
50
+ format: 'OCT',
51
+ test: /^[-+]?0[0-7_]+$/,
52
+ resolve: (str, _onError, opt) => intResolve(str, 1, 8, opt),
53
+ stringify: node => intStringify(node, 8, '0')
54
+ };
55
+ const int = {
56
+ identify: intIdentify,
57
+ default: true,
58
+ tag: 'tag:yaml.org,2002:int',
59
+ test: /^[-+]?[0-9][0-9_]*$/,
60
+ resolve: (str, _onError, opt) => intResolve(str, 0, 10, opt),
61
+ stringify: stringifyNumber.stringifyNumber
62
+ };
63
+ const intHex = {
64
+ identify: intIdentify,
65
+ default: true,
66
+ tag: 'tag:yaml.org,2002:int',
67
+ format: 'HEX',
68
+ test: /^[-+]?0x[0-9a-fA-F_]+$/,
69
+ resolve: (str, _onError, opt) => intResolve(str, 2, 16, opt),
70
+ stringify: node => intStringify(node, 16, '0x')
71
+ };
72
+
73
+ exports.int = int;
74
+ exports.intBin = intBin;
75
+ exports.intHex = intHex;
76
+ exports.intOct = intOct;
@@ -0,0 +1,71 @@
1
+ 'use strict';
2
+
3
+ var identity = require('../../nodes/identity.js');
4
+ var Scalar = require('../../nodes/Scalar.js');
5
+
6
+ // If the value associated with a merge key is a single mapping node, each of
7
+ // its key/value pairs is inserted into the current mapping, unless the key
8
+ // already exists in it. If the value associated with the merge key is a
9
+ // sequence, then this sequence is expected to contain mapping nodes and each
10
+ // of these nodes is merged in turn according to its order in the sequence.
11
+ // Keys in mapping nodes earlier in the sequence override keys specified in
12
+ // later mapping nodes. -- http://yaml.org/type/merge.html
13
+ const MERGE_KEY = '<<';
14
+ const merge = {
15
+ identify: value => value === MERGE_KEY ||
16
+ (typeof value === 'symbol' && value.description === MERGE_KEY),
17
+ default: 'key',
18
+ tag: 'tag:yaml.org,2002:merge',
19
+ test: /^<<$/,
20
+ resolve: () => Object.assign(new Scalar.Scalar(Symbol(MERGE_KEY)), {
21
+ addToJSMap: addMergeToJSMap
22
+ }),
23
+ stringify: () => MERGE_KEY
24
+ };
25
+ const isMergeKey = (ctx, key) => (merge.identify(key) ||
26
+ (identity.isScalar(key) &&
27
+ (!key.type || key.type === Scalar.Scalar.PLAIN) &&
28
+ merge.identify(key.value))) &&
29
+ ctx?.doc.schema.tags.some(tag => tag.tag === merge.tag && tag.default);
30
+ function addMergeToJSMap(ctx, map, value) {
31
+ const source = resolveAliasValue(ctx, value);
32
+ if (identity.isSeq(source))
33
+ for (const it of source.items)
34
+ mergeValue(ctx, map, it);
35
+ else if (Array.isArray(source))
36
+ for (const it of source)
37
+ mergeValue(ctx, map, it);
38
+ else
39
+ mergeValue(ctx, map, source);
40
+ }
41
+ function mergeValue(ctx, map, value) {
42
+ const source = resolveAliasValue(ctx, value);
43
+ if (!identity.isMap(source))
44
+ throw new Error('Merge sources must be maps or map aliases');
45
+ const srcMap = source.toJSON(null, ctx, Map);
46
+ for (const [key, value] of srcMap) {
47
+ if (map instanceof Map) {
48
+ if (!map.has(key))
49
+ map.set(key, value);
50
+ }
51
+ else if (map instanceof Set) {
52
+ map.add(key);
53
+ }
54
+ else if (!Object.prototype.hasOwnProperty.call(map, key)) {
55
+ Object.defineProperty(map, key, {
56
+ value,
57
+ writable: true,
58
+ enumerable: true,
59
+ configurable: true
60
+ });
61
+ }
62
+ }
63
+ return map;
64
+ }
65
+ function resolveAliasValue(ctx, value) {
66
+ return ctx && identity.isAlias(value) ? value.resolve(ctx.doc, ctx) : value;
67
+ }
68
+
69
+ exports.addMergeToJSMap = addMergeToJSMap;
70
+ exports.isMergeKey = isMergeKey;
71
+ exports.merge = merge;
@@ -0,0 +1,77 @@
1
+ 'use strict';
2
+
3
+ var identity = require('../../nodes/identity.js');
4
+ var toJS = require('../../nodes/toJS.js');
5
+ var YAMLMap = require('../../nodes/YAMLMap.js');
6
+ var YAMLSeq = require('../../nodes/YAMLSeq.js');
7
+ var pairs = require('./pairs.js');
8
+
9
+ class YAMLOMap extends YAMLSeq.YAMLSeq {
10
+ constructor() {
11
+ super();
12
+ this.add = YAMLMap.YAMLMap.prototype.add.bind(this);
13
+ this.delete = YAMLMap.YAMLMap.prototype.delete.bind(this);
14
+ this.get = YAMLMap.YAMLMap.prototype.get.bind(this);
15
+ this.has = YAMLMap.YAMLMap.prototype.has.bind(this);
16
+ this.set = YAMLMap.YAMLMap.prototype.set.bind(this);
17
+ this.tag = YAMLOMap.tag;
18
+ }
19
+ /**
20
+ * If `ctx` is given, the return type is actually `Map<unknown, unknown>`,
21
+ * but TypeScript won't allow widening the signature of a child method.
22
+ */
23
+ toJSON(_, ctx) {
24
+ if (!ctx)
25
+ return super.toJSON(_);
26
+ const map = new Map();
27
+ if (ctx?.onCreate)
28
+ ctx.onCreate(map);
29
+ for (const pair of this.items) {
30
+ let key, value;
31
+ if (identity.isPair(pair)) {
32
+ key = toJS.toJS(pair.key, '', ctx);
33
+ value = toJS.toJS(pair.value, key, ctx);
34
+ }
35
+ else {
36
+ key = toJS.toJS(pair, '', ctx);
37
+ }
38
+ if (map.has(key))
39
+ throw new Error('Ordered maps must not include duplicate keys');
40
+ map.set(key, value);
41
+ }
42
+ return map;
43
+ }
44
+ static from(schema, iterable, ctx) {
45
+ const pairs$1 = pairs.createPairs(schema, iterable, ctx);
46
+ const omap = new this();
47
+ omap.items = pairs$1.items;
48
+ return omap;
49
+ }
50
+ }
51
+ YAMLOMap.tag = 'tag:yaml.org,2002:omap';
52
+ const omap = {
53
+ collection: 'seq',
54
+ identify: value => value instanceof Map,
55
+ nodeClass: YAMLOMap,
56
+ default: false,
57
+ tag: 'tag:yaml.org,2002:omap',
58
+ resolve(seq, onError) {
59
+ const pairs$1 = pairs.resolvePairs(seq, onError);
60
+ const seenKeys = [];
61
+ for (const { key } of pairs$1.items) {
62
+ if (identity.isScalar(key)) {
63
+ if (seenKeys.includes(key.value)) {
64
+ onError(`Ordered maps must not include duplicate keys: ${key.value}`);
65
+ }
66
+ else {
67
+ seenKeys.push(key.value);
68
+ }
69
+ }
70
+ }
71
+ return Object.assign(new YAMLOMap(), pairs$1);
72
+ },
73
+ createNode: (schema, iterable, ctx) => YAMLOMap.from(schema, iterable, ctx)
74
+ };
75
+
76
+ exports.YAMLOMap = YAMLOMap;
77
+ exports.omap = omap;
@@ -0,0 +1,82 @@
1
+ 'use strict';
2
+
3
+ var identity = require('../../nodes/identity.js');
4
+ var Pair = require('../../nodes/Pair.js');
5
+ var Scalar = require('../../nodes/Scalar.js');
6
+ var YAMLSeq = require('../../nodes/YAMLSeq.js');
7
+
8
+ function resolvePairs(seq, onError) {
9
+ if (identity.isSeq(seq)) {
10
+ for (let i = 0; i < seq.items.length; ++i) {
11
+ let item = seq.items[i];
12
+ if (identity.isPair(item))
13
+ continue;
14
+ else if (identity.isMap(item)) {
15
+ if (item.items.length > 1)
16
+ onError('Each pair must have its own sequence indicator');
17
+ const pair = item.items[0] || new Pair.Pair(new Scalar.Scalar(null));
18
+ if (item.commentBefore)
19
+ pair.key.commentBefore = pair.key.commentBefore
20
+ ? `${item.commentBefore}\n${pair.key.commentBefore}`
21
+ : item.commentBefore;
22
+ if (item.comment) {
23
+ const cn = pair.value ?? pair.key;
24
+ cn.comment = cn.comment
25
+ ? `${item.comment}\n${cn.comment}`
26
+ : item.comment;
27
+ }
28
+ item = pair;
29
+ }
30
+ seq.items[i] = identity.isPair(item) ? item : new Pair.Pair(item);
31
+ }
32
+ }
33
+ else
34
+ onError('Expected a sequence for this tag');
35
+ return seq;
36
+ }
37
+ function createPairs(schema, iterable, ctx) {
38
+ const { replacer } = ctx;
39
+ const pairs = new YAMLSeq.YAMLSeq(schema);
40
+ pairs.tag = 'tag:yaml.org,2002:pairs';
41
+ let i = 0;
42
+ if (iterable && Symbol.iterator in Object(iterable))
43
+ for (let it of iterable) {
44
+ if (typeof replacer === 'function')
45
+ it = replacer.call(iterable, String(i++), it);
46
+ let key, value;
47
+ if (Array.isArray(it)) {
48
+ if (it.length === 2) {
49
+ key = it[0];
50
+ value = it[1];
51
+ }
52
+ else
53
+ throw new TypeError(`Expected [key, value] tuple: ${it}`);
54
+ }
55
+ else if (it && it instanceof Object) {
56
+ const keys = Object.keys(it);
57
+ if (keys.length === 1) {
58
+ key = keys[0];
59
+ value = it[key];
60
+ }
61
+ else {
62
+ throw new TypeError(`Expected tuple with one key, not ${keys.length} keys`);
63
+ }
64
+ }
65
+ else {
66
+ key = it;
67
+ }
68
+ pairs.items.push(Pair.createPair(key, value, ctx));
69
+ }
70
+ return pairs;
71
+ }
72
+ const pairs = {
73
+ collection: 'seq',
74
+ default: false,
75
+ tag: 'tag:yaml.org,2002:pairs',
76
+ resolve: resolvePairs,
77
+ createNode: createPairs
78
+ };
79
+
80
+ exports.createPairs = createPairs;
81
+ exports.pairs = pairs;
82
+ exports.resolvePairs = resolvePairs;
@@ -0,0 +1,41 @@
1
+ 'use strict';
2
+
3
+ var map = require('../common/map.js');
4
+ var _null = require('../common/null.js');
5
+ var seq = require('../common/seq.js');
6
+ var string = require('../common/string.js');
7
+ var binary = require('./binary.js');
8
+ var bool = require('./bool.js');
9
+ var float = require('./float.js');
10
+ var int = require('./int.js');
11
+ var merge = require('./merge.js');
12
+ var omap = require('./omap.js');
13
+ var pairs = require('./pairs.js');
14
+ var set = require('./set.js');
15
+ var timestamp = require('./timestamp.js');
16
+
17
+ const schema = [
18
+ map.map,
19
+ seq.seq,
20
+ string.string,
21
+ _null.nullTag,
22
+ bool.trueTag,
23
+ bool.falseTag,
24
+ int.intBin,
25
+ int.intOct,
26
+ int.int,
27
+ int.intHex,
28
+ float.floatNaN,
29
+ float.floatExp,
30
+ float.float,
31
+ binary.binary,
32
+ merge.merge,
33
+ omap.omap,
34
+ pairs.pairs,
35
+ set.set,
36
+ timestamp.intTime,
37
+ timestamp.floatTime,
38
+ timestamp.timestamp
39
+ ];
40
+
41
+ exports.schema = schema;
@@ -0,0 +1,96 @@
1
+ 'use strict';
2
+
3
+ var identity = require('../../nodes/identity.js');
4
+ var Pair = require('../../nodes/Pair.js');
5
+ var YAMLMap = require('../../nodes/YAMLMap.js');
6
+
7
+ class YAMLSet extends YAMLMap.YAMLMap {
8
+ constructor(schema) {
9
+ super(schema);
10
+ this.tag = YAMLSet.tag;
11
+ }
12
+ add(key) {
13
+ let pair;
14
+ if (identity.isPair(key))
15
+ pair = key;
16
+ else if (key &&
17
+ typeof key === 'object' &&
18
+ 'key' in key &&
19
+ 'value' in key &&
20
+ key.value === null)
21
+ pair = new Pair.Pair(key.key, null);
22
+ else
23
+ pair = new Pair.Pair(key, null);
24
+ const prev = YAMLMap.findPair(this.items, pair.key);
25
+ if (!prev)
26
+ this.items.push(pair);
27
+ }
28
+ /**
29
+ * If `keepPair` is `true`, returns the Pair matching `key`.
30
+ * Otherwise, returns the value of that Pair's key.
31
+ */
32
+ get(key, keepPair) {
33
+ const pair = YAMLMap.findPair(this.items, key);
34
+ return !keepPair && identity.isPair(pair)
35
+ ? identity.isScalar(pair.key)
36
+ ? pair.key.value
37
+ : pair.key
38
+ : pair;
39
+ }
40
+ set(key, value) {
41
+ if (typeof value !== 'boolean')
42
+ throw new Error(`Expected boolean value for set(key, value) in a YAML set, not ${typeof value}`);
43
+ const prev = YAMLMap.findPair(this.items, key);
44
+ if (prev && !value) {
45
+ this.items.splice(this.items.indexOf(prev), 1);
46
+ }
47
+ else if (!prev && value) {
48
+ this.items.push(new Pair.Pair(key));
49
+ }
50
+ }
51
+ toJSON(_, ctx) {
52
+ return super.toJSON(_, ctx, Set);
53
+ }
54
+ toString(ctx, onComment, onChompKeep) {
55
+ if (!ctx)
56
+ return JSON.stringify(this);
57
+ if (this.hasAllNullValues(true))
58
+ return super.toString(Object.assign({}, ctx, { allNullValues: true }), onComment, onChompKeep);
59
+ else
60
+ throw new Error('Set items must all have null values');
61
+ }
62
+ static from(schema, iterable, ctx) {
63
+ const { replacer } = ctx;
64
+ const set = new this(schema);
65
+ if (iterable && Symbol.iterator in Object(iterable))
66
+ for (let value of iterable) {
67
+ if (typeof replacer === 'function')
68
+ value = replacer.call(iterable, value, value);
69
+ set.items.push(Pair.createPair(value, null, ctx));
70
+ }
71
+ return set;
72
+ }
73
+ }
74
+ YAMLSet.tag = 'tag:yaml.org,2002:set';
75
+ const set = {
76
+ collection: 'map',
77
+ identify: value => value instanceof Set,
78
+ nodeClass: YAMLSet,
79
+ default: false,
80
+ tag: 'tag:yaml.org,2002:set',
81
+ createNode: (schema, iterable, ctx) => YAMLSet.from(schema, iterable, ctx),
82
+ resolve(map, onError) {
83
+ if (identity.isMap(map)) {
84
+ if (map.hasAllNullValues(true))
85
+ return Object.assign(new YAMLSet(), map);
86
+ else
87
+ onError('Set items must all have null values');
88
+ }
89
+ else
90
+ onError('Expected a mapping for this tag');
91
+ return map;
92
+ }
93
+ };
94
+
95
+ exports.YAMLSet = YAMLSet;
96
+ exports.set = set;
@@ -0,0 +1,105 @@
1
+ 'use strict';
2
+
3
+ var stringifyNumber = require('../../stringify/stringifyNumber.js');
4
+
5
+ /** Internal types handle bigint as number, because TS can't figure it out. */
6
+ function parseSexagesimal(str, asBigInt) {
7
+ const sign = str[0];
8
+ const parts = sign === '-' || sign === '+' ? str.substring(1) : str;
9
+ const num = (n) => asBigInt ? BigInt(n) : Number(n);
10
+ const res = parts
11
+ .replace(/_/g, '')
12
+ .split(':')
13
+ .reduce((res, p) => res * num(60) + num(p), num(0));
14
+ return (sign === '-' ? num(-1) * res : res);
15
+ }
16
+ /**
17
+ * hhhh:mm:ss.sss
18
+ *
19
+ * Internal types handle bigint as number, because TS can't figure it out.
20
+ */
21
+ function stringifySexagesimal(node) {
22
+ let { value } = node;
23
+ let num = (n) => n;
24
+ if (typeof value === 'bigint')
25
+ num = n => BigInt(n);
26
+ else if (isNaN(value) || !isFinite(value))
27
+ return stringifyNumber.stringifyNumber(node);
28
+ let sign = '';
29
+ if (value < 0) {
30
+ sign = '-';
31
+ value *= num(-1);
32
+ }
33
+ const _60 = num(60);
34
+ const parts = [value % _60]; // seconds, including ms
35
+ if (value < 60) {
36
+ parts.unshift(0); // at least one : is required
37
+ }
38
+ else {
39
+ value = (value - parts[0]) / _60;
40
+ parts.unshift(value % _60); // minutes
41
+ if (value >= 60) {
42
+ value = (value - parts[0]) / _60;
43
+ parts.unshift(value); // hours
44
+ }
45
+ }
46
+ return (sign +
47
+ parts
48
+ .map(n => String(n).padStart(2, '0'))
49
+ .join(':')
50
+ .replace(/000000\d*$/, '') // % 60 may introduce error
51
+ );
52
+ }
53
+ const intTime = {
54
+ identify: value => typeof value === 'bigint' || Number.isInteger(value),
55
+ default: true,
56
+ tag: 'tag:yaml.org,2002:int',
57
+ format: 'TIME',
58
+ test: /^[-+]?[0-9][0-9_]*(?::[0-5]?[0-9])+$/,
59
+ resolve: (str, _onError, { intAsBigInt }) => parseSexagesimal(str, intAsBigInt),
60
+ stringify: stringifySexagesimal
61
+ };
62
+ const floatTime = {
63
+ identify: value => typeof value === 'number',
64
+ default: true,
65
+ tag: 'tag:yaml.org,2002:float',
66
+ format: 'TIME',
67
+ test: /^[-+]?[0-9][0-9_]*(?::[0-5]?[0-9])+\.[0-9_]*$/,
68
+ resolve: str => parseSexagesimal(str, false),
69
+ stringify: stringifySexagesimal
70
+ };
71
+ const timestamp = {
72
+ identify: value => value instanceof Date,
73
+ default: true,
74
+ tag: 'tag:yaml.org,2002:timestamp',
75
+ // If the time zone is omitted, the timestamp is assumed to be specified in UTC. The time part
76
+ // may be omitted altogether, resulting in a date format. In such a case, the time part is
77
+ // assumed to be 00:00:00Z (start of day, UTC).
78
+ test: RegExp('^([0-9]{4})-([0-9]{1,2})-([0-9]{1,2})' + // YYYY-Mm-Dd
79
+ '(?:' + // time is optional
80
+ '(?:t|T|[ \\t]+)' + // t | T | whitespace
81
+ '([0-9]{1,2}):([0-9]{1,2}):([0-9]{1,2}(\\.[0-9]+)?)' + // Hh:Mm:Ss(.ss)?
82
+ '(?:[ \\t]*(Z|[-+][012]?[0-9](?::[0-9]{2})?))?' + // Z | +5 | -03:30
83
+ ')?$'),
84
+ resolve(str) {
85
+ const match = str.match(timestamp.test);
86
+ if (!match)
87
+ throw new Error('!!timestamp expects a date, starting with yyyy-mm-dd');
88
+ const [, year, month, day, hour, minute, second] = match.map(Number);
89
+ const millisec = match[7] ? Number((match[7] + '00').substr(1, 3)) : 0;
90
+ let date = Date.UTC(year, month - 1, day, hour || 0, minute || 0, second || 0, millisec);
91
+ const tz = match[8];
92
+ if (tz && tz !== 'Z') {
93
+ let d = parseSexagesimal(tz, false);
94
+ if (Math.abs(d) < 30)
95
+ d *= 60;
96
+ date -= 60000 * d;
97
+ }
98
+ return new Date(date);
99
+ },
100
+ stringify: ({ value }) => value?.toISOString().replace(/(T00:00:00)?\.000Z$/, '') ?? ''
101
+ };
102
+
103
+ exports.floatTime = floatTime;
104
+ exports.intTime = intTime;
105
+ exports.timestamp = timestamp;