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,147 @@
1
+ 'use strict';
2
+
3
+ var stringifyCollection = require('../stringify/stringifyCollection.js');
4
+ var addPairToJSMap = require('./addPairToJSMap.js');
5
+ var Collection = require('./Collection.js');
6
+ var identity = require('./identity.js');
7
+ var Pair = require('./Pair.js');
8
+ var Scalar = require('./Scalar.js');
9
+
10
+ function findPair(items, key) {
11
+ const k = identity.isScalar(key) ? key.value : key;
12
+ for (const it of items) {
13
+ if (identity.isPair(it)) {
14
+ if (it.key === key || it.key === k)
15
+ return it;
16
+ if (identity.isScalar(it.key) && it.key.value === k)
17
+ return it;
18
+ }
19
+ }
20
+ return undefined;
21
+ }
22
+ class YAMLMap extends Collection.Collection {
23
+ static get tagName() {
24
+ return 'tag:yaml.org,2002:map';
25
+ }
26
+ constructor(schema) {
27
+ super(identity.MAP, schema);
28
+ this.items = [];
29
+ }
30
+ /**
31
+ * A generic collection parsing method that can be extended
32
+ * to other node classes that inherit from YAMLMap
33
+ */
34
+ static from(schema, obj, ctx) {
35
+ const { keepUndefined, replacer } = ctx;
36
+ const map = new this(schema);
37
+ const add = (key, value) => {
38
+ if (typeof replacer === 'function')
39
+ value = replacer.call(obj, key, value);
40
+ else if (Array.isArray(replacer) && !replacer.includes(key))
41
+ return;
42
+ if (value !== undefined || keepUndefined)
43
+ map.items.push(Pair.createPair(key, value, ctx));
44
+ };
45
+ if (obj instanceof Map) {
46
+ for (const [key, value] of obj)
47
+ add(key, value);
48
+ }
49
+ else if (obj && typeof obj === 'object') {
50
+ for (const key of Object.keys(obj))
51
+ add(key, obj[key]);
52
+ }
53
+ if (typeof schema.sortMapEntries === 'function') {
54
+ map.items.sort(schema.sortMapEntries);
55
+ }
56
+ return map;
57
+ }
58
+ /**
59
+ * Adds a value to the collection.
60
+ *
61
+ * @param overwrite - If not set `true`, using a key that is already in the
62
+ * collection will throw. Otherwise, overwrites the previous value.
63
+ */
64
+ add(pair, overwrite) {
65
+ let _pair;
66
+ if (identity.isPair(pair))
67
+ _pair = pair;
68
+ else if (!pair || typeof pair !== 'object' || !('key' in pair)) {
69
+ // In TypeScript, this never happens.
70
+ _pair = new Pair.Pair(pair, pair?.value);
71
+ }
72
+ else
73
+ _pair = new Pair.Pair(pair.key, pair.value);
74
+ const prev = findPair(this.items, _pair.key);
75
+ const sortEntries = this.schema?.sortMapEntries;
76
+ if (prev) {
77
+ if (!overwrite)
78
+ throw new Error(`Key ${_pair.key} already set`);
79
+ // For scalars, keep the old node & its comments and anchors
80
+ if (identity.isScalar(prev.value) && Scalar.isScalarValue(_pair.value))
81
+ prev.value.value = _pair.value;
82
+ else
83
+ prev.value = _pair.value;
84
+ }
85
+ else if (sortEntries) {
86
+ const i = this.items.findIndex(item => sortEntries(_pair, item) < 0);
87
+ if (i === -1)
88
+ this.items.push(_pair);
89
+ else
90
+ this.items.splice(i, 0, _pair);
91
+ }
92
+ else {
93
+ this.items.push(_pair);
94
+ }
95
+ }
96
+ delete(key) {
97
+ const it = findPair(this.items, key);
98
+ if (!it)
99
+ return false;
100
+ const del = this.items.splice(this.items.indexOf(it), 1);
101
+ return del.length > 0;
102
+ }
103
+ get(key, keepScalar) {
104
+ const it = findPair(this.items, key);
105
+ const node = it?.value;
106
+ return (!keepScalar && identity.isScalar(node) ? node.value : node) ?? undefined;
107
+ }
108
+ has(key) {
109
+ return !!findPair(this.items, key);
110
+ }
111
+ set(key, value) {
112
+ this.add(new Pair.Pair(key, value), true);
113
+ }
114
+ /**
115
+ * @param ctx - Conversion context, originally set in Document#toJS()
116
+ * @param {Class} Type - If set, forces the returned collection type
117
+ * @returns Instance of Type, Map, or Object
118
+ */
119
+ toJSON(_, ctx, Type) {
120
+ const map = Type ? new Type() : ctx?.mapAsMap ? new Map() : {};
121
+ if (ctx?.onCreate)
122
+ ctx.onCreate(map);
123
+ for (const item of this.items)
124
+ addPairToJSMap.addPairToJSMap(ctx, map, item);
125
+ return map;
126
+ }
127
+ toString(ctx, onComment, onChompKeep) {
128
+ if (!ctx)
129
+ return JSON.stringify(this);
130
+ for (const item of this.items) {
131
+ if (!identity.isPair(item))
132
+ throw new Error(`Map items must all be pairs; found ${JSON.stringify(item)} instead`);
133
+ }
134
+ if (!ctx.allNullValues && this.hasAllNullValues(false))
135
+ ctx = Object.assign({}, ctx, { allNullValues: true });
136
+ return stringifyCollection.stringifyCollection(this, ctx, {
137
+ blockItemPrefix: '',
138
+ flowChars: { start: '{', end: '}' },
139
+ itemIndent: ctx.indent || '',
140
+ onChompKeep,
141
+ onComment
142
+ });
143
+ }
144
+ }
145
+
146
+ exports.YAMLMap = YAMLMap;
147
+ exports.findPair = findPair;
@@ -0,0 +1,115 @@
1
+ 'use strict';
2
+
3
+ var createNode = require('../doc/createNode.js');
4
+ var stringifyCollection = require('../stringify/stringifyCollection.js');
5
+ var Collection = require('./Collection.js');
6
+ var identity = require('./identity.js');
7
+ var Scalar = require('./Scalar.js');
8
+ var toJS = require('./toJS.js');
9
+
10
+ class YAMLSeq extends Collection.Collection {
11
+ static get tagName() {
12
+ return 'tag:yaml.org,2002:seq';
13
+ }
14
+ constructor(schema) {
15
+ super(identity.SEQ, schema);
16
+ this.items = [];
17
+ }
18
+ add(value) {
19
+ this.items.push(value);
20
+ }
21
+ /**
22
+ * Removes a value from the collection.
23
+ *
24
+ * `key` must contain a representation of an integer for this to succeed.
25
+ * It may be wrapped in a `Scalar`.
26
+ *
27
+ * @returns `true` if the item was found and removed.
28
+ */
29
+ delete(key) {
30
+ const idx = asItemIndex(key);
31
+ if (typeof idx !== 'number')
32
+ return false;
33
+ const del = this.items.splice(idx, 1);
34
+ return del.length > 0;
35
+ }
36
+ get(key, keepScalar) {
37
+ const idx = asItemIndex(key);
38
+ if (typeof idx !== 'number')
39
+ return undefined;
40
+ const it = this.items[idx];
41
+ return !keepScalar && identity.isScalar(it) ? it.value : it;
42
+ }
43
+ /**
44
+ * Checks if the collection includes a value with the key `key`.
45
+ *
46
+ * `key` must contain a representation of an integer for this to succeed.
47
+ * It may be wrapped in a `Scalar`.
48
+ */
49
+ has(key) {
50
+ const idx = asItemIndex(key);
51
+ return typeof idx === 'number' && idx < this.items.length;
52
+ }
53
+ /**
54
+ * Sets a value in this collection. For `!!set`, `value` needs to be a
55
+ * boolean to add/remove the item from the set.
56
+ *
57
+ * If `key` does not contain a representation of an integer, this will throw.
58
+ * It may be wrapped in a `Scalar`.
59
+ */
60
+ set(key, value) {
61
+ const idx = asItemIndex(key);
62
+ if (typeof idx !== 'number')
63
+ throw new Error(`Expected a valid index, not ${key}.`);
64
+ const prev = this.items[idx];
65
+ if (identity.isScalar(prev) && Scalar.isScalarValue(value))
66
+ prev.value = value;
67
+ else
68
+ this.items[idx] = value;
69
+ }
70
+ toJSON(_, ctx) {
71
+ const seq = [];
72
+ if (ctx?.onCreate)
73
+ ctx.onCreate(seq);
74
+ let i = 0;
75
+ for (const item of this.items)
76
+ seq.push(toJS.toJS(item, String(i++), ctx));
77
+ return seq;
78
+ }
79
+ toString(ctx, onComment, onChompKeep) {
80
+ if (!ctx)
81
+ return JSON.stringify(this);
82
+ return stringifyCollection.stringifyCollection(this, ctx, {
83
+ blockItemPrefix: '- ',
84
+ flowChars: { start: '[', end: ']' },
85
+ itemIndent: (ctx.indent || '') + ' ',
86
+ onChompKeep,
87
+ onComment
88
+ });
89
+ }
90
+ static from(schema, obj, ctx) {
91
+ const { replacer } = ctx;
92
+ const seq = new this(schema);
93
+ if (obj && Symbol.iterator in Object(obj)) {
94
+ let i = 0;
95
+ for (let it of obj) {
96
+ if (typeof replacer === 'function') {
97
+ const key = obj instanceof Set ? it : String(i++);
98
+ it = replacer.call(obj, key, it);
99
+ }
100
+ seq.items.push(createNode.createNode(it, undefined, ctx));
101
+ }
102
+ }
103
+ return seq;
104
+ }
105
+ }
106
+ function asItemIndex(key) {
107
+ let idx = identity.isScalar(key) ? key.value : key;
108
+ if (idx && typeof idx === 'string')
109
+ idx = Number(idx);
110
+ return typeof idx === 'number' && Number.isInteger(idx) && idx >= 0
111
+ ? idx
112
+ : null;
113
+ }
114
+
115
+ exports.YAMLSeq = YAMLSeq;
@@ -0,0 +1,65 @@
1
+ 'use strict';
2
+
3
+ var log = require('../log.js');
4
+ var merge = require('../schema/yaml-1.1/merge.js');
5
+ var stringify = require('../stringify/stringify.js');
6
+ var identity = require('./identity.js');
7
+ var toJS = require('./toJS.js');
8
+
9
+ function addPairToJSMap(ctx, map, { key, value }) {
10
+ if (identity.isNode(key) && key.addToJSMap)
11
+ key.addToJSMap(ctx, map, value);
12
+ // TODO: Should drop this special case for bare << handling
13
+ else if (merge.isMergeKey(ctx, key))
14
+ merge.addMergeToJSMap(ctx, map, value);
15
+ else {
16
+ const jsKey = toJS.toJS(key, '', ctx);
17
+ if (map instanceof Map) {
18
+ map.set(jsKey, toJS.toJS(value, jsKey, ctx));
19
+ }
20
+ else if (map instanceof Set) {
21
+ map.add(jsKey);
22
+ }
23
+ else {
24
+ const stringKey = stringifyKey(key, jsKey, ctx);
25
+ const jsValue = toJS.toJS(value, stringKey, ctx);
26
+ if (stringKey in map)
27
+ Object.defineProperty(map, stringKey, {
28
+ value: jsValue,
29
+ writable: true,
30
+ enumerable: true,
31
+ configurable: true
32
+ });
33
+ else
34
+ map[stringKey] = jsValue;
35
+ }
36
+ }
37
+ return map;
38
+ }
39
+ function stringifyKey(key, jsKey, ctx) {
40
+ if (jsKey === null)
41
+ return '';
42
+ // eslint-disable-next-line @typescript-eslint/no-base-to-string
43
+ if (typeof jsKey !== 'object')
44
+ return String(jsKey);
45
+ if (identity.isNode(key) && ctx?.doc) {
46
+ const strCtx = stringify.createStringifyContext(ctx.doc, {});
47
+ strCtx.anchors = new Set();
48
+ for (const node of ctx.anchors.keys())
49
+ strCtx.anchors.add(node.anchor);
50
+ strCtx.inFlow = true;
51
+ strCtx.inStringifyKey = true;
52
+ const strKey = key.toString(strCtx);
53
+ if (!ctx.mapKeyWarned) {
54
+ let jsonStr = JSON.stringify(strKey);
55
+ if (jsonStr.length > 40)
56
+ jsonStr = jsonStr.substring(0, 36) + '..."';
57
+ log.warn(ctx.doc.options.logLevel, `Keys with collection values will be stringified due to JS Object restrictions: ${jsonStr}. Set mapAsMap: true to use object keys.`);
58
+ ctx.mapKeyWarned = true;
59
+ }
60
+ return strKey;
61
+ }
62
+ return JSON.stringify(jsKey);
63
+ }
64
+
65
+ exports.addPairToJSMap = addPairToJSMap;
@@ -0,0 +1,53 @@
1
+ 'use strict';
2
+
3
+ const ALIAS = Symbol.for('yaml.alias');
4
+ const DOC = Symbol.for('yaml.document');
5
+ const MAP = Symbol.for('yaml.map');
6
+ const PAIR = Symbol.for('yaml.pair');
7
+ const SCALAR = Symbol.for('yaml.scalar');
8
+ const SEQ = Symbol.for('yaml.seq');
9
+ const NODE_TYPE = Symbol.for('yaml.node.type');
10
+ const isAlias = (node) => !!node && typeof node === 'object' && node[NODE_TYPE] === ALIAS;
11
+ const isDocument = (node) => !!node && typeof node === 'object' && node[NODE_TYPE] === DOC;
12
+ const isMap = (node) => !!node && typeof node === 'object' && node[NODE_TYPE] === MAP;
13
+ const isPair = (node) => !!node && typeof node === 'object' && node[NODE_TYPE] === PAIR;
14
+ const isScalar = (node) => !!node && typeof node === 'object' && node[NODE_TYPE] === SCALAR;
15
+ const isSeq = (node) => !!node && typeof node === 'object' && node[NODE_TYPE] === SEQ;
16
+ function isCollection(node) {
17
+ if (node && typeof node === 'object')
18
+ switch (node[NODE_TYPE]) {
19
+ case MAP:
20
+ case SEQ:
21
+ return true;
22
+ }
23
+ return false;
24
+ }
25
+ function isNode(node) {
26
+ if (node && typeof node === 'object')
27
+ switch (node[NODE_TYPE]) {
28
+ case ALIAS:
29
+ case MAP:
30
+ case SCALAR:
31
+ case SEQ:
32
+ return true;
33
+ }
34
+ return false;
35
+ }
36
+ const hasAnchor = (node) => (isScalar(node) || isCollection(node)) && !!node.anchor;
37
+
38
+ exports.ALIAS = ALIAS;
39
+ exports.DOC = DOC;
40
+ exports.MAP = MAP;
41
+ exports.NODE_TYPE = NODE_TYPE;
42
+ exports.PAIR = PAIR;
43
+ exports.SCALAR = SCALAR;
44
+ exports.SEQ = SEQ;
45
+ exports.hasAnchor = hasAnchor;
46
+ exports.isAlias = isAlias;
47
+ exports.isCollection = isCollection;
48
+ exports.isDocument = isDocument;
49
+ exports.isMap = isMap;
50
+ exports.isNode = isNode;
51
+ exports.isPair = isPair;
52
+ exports.isScalar = isScalar;
53
+ exports.isSeq = isSeq;
@@ -0,0 +1,39 @@
1
+ 'use strict';
2
+
3
+ var identity = require('./identity.js');
4
+
5
+ /**
6
+ * Recursively convert any node or its contents to native JavaScript
7
+ *
8
+ * @param value - The input value
9
+ * @param arg - If `value` defines a `toJSON()` method, use this
10
+ * as its first argument
11
+ * @param ctx - Conversion context, originally set in Document#toJS(). If
12
+ * `{ keep: true }` is not set, output should be suitable for JSON
13
+ * stringification.
14
+ */
15
+ function toJS(value, arg, ctx) {
16
+ // eslint-disable-next-line @typescript-eslint/no-unsafe-return
17
+ if (Array.isArray(value))
18
+ return value.map((v, i) => toJS(v, String(i), ctx));
19
+ if (value && typeof value.toJSON === 'function') {
20
+ // eslint-disable-next-line @typescript-eslint/no-unsafe-call
21
+ if (!ctx || !identity.hasAnchor(value))
22
+ return value.toJSON(arg, ctx);
23
+ const data = { aliasCount: 0, count: 1, res: undefined };
24
+ ctx.anchors.set(value, data);
25
+ ctx.onCreate = res => {
26
+ data.res = res;
27
+ delete ctx.onCreate;
28
+ };
29
+ const res = value.toJSON(arg, ctx);
30
+ if (ctx.onCreate)
31
+ ctx.onCreate(res);
32
+ return res;
33
+ }
34
+ if (typeof value === 'bigint' && !ctx?.keep)
35
+ return Number(value);
36
+ return value;
37
+ }
38
+
39
+ exports.toJS = toJS;
@@ -0,0 +1,218 @@
1
+ 'use strict';
2
+
3
+ var resolveBlockScalar = require('../compose/resolve-block-scalar.js');
4
+ var resolveFlowScalar = require('../compose/resolve-flow-scalar.js');
5
+ var errors = require('../errors.js');
6
+ var stringifyString = require('../stringify/stringifyString.js');
7
+
8
+ function resolveAsScalar(token, strict = true, onError) {
9
+ if (token) {
10
+ const _onError = (pos, code, message) => {
11
+ const offset = typeof pos === 'number' ? pos : Array.isArray(pos) ? pos[0] : pos.offset;
12
+ if (onError)
13
+ onError(offset, code, message);
14
+ else
15
+ throw new errors.YAMLParseError([offset, offset + 1], code, message);
16
+ };
17
+ switch (token.type) {
18
+ case 'scalar':
19
+ case 'single-quoted-scalar':
20
+ case 'double-quoted-scalar':
21
+ return resolveFlowScalar.resolveFlowScalar(token, strict, _onError);
22
+ case 'block-scalar':
23
+ return resolveBlockScalar.resolveBlockScalar({ options: { strict } }, token, _onError);
24
+ }
25
+ }
26
+ return null;
27
+ }
28
+ /**
29
+ * Create a new scalar token with `value`
30
+ *
31
+ * Values that represent an actual string but may be parsed as a different type should use a `type` other than `'PLAIN'`,
32
+ * as this function does not support any schema operations and won't check for such conflicts.
33
+ *
34
+ * @param value The string representation of the value, which will have its content properly indented.
35
+ * @param context.end Comments and whitespace after the end of the value, or after the block scalar header. If undefined, a newline will be added.
36
+ * @param context.implicitKey Being within an implicit key may affect the resolved type of the token's value.
37
+ * @param context.indent The indent level of the token.
38
+ * @param context.inFlow Is this scalar within a flow collection? This may affect the resolved type of the token's value.
39
+ * @param context.offset The offset position of the token.
40
+ * @param context.type The preferred type of the scalar token. If undefined, the previous type of the `token` will be used, defaulting to `'PLAIN'`.
41
+ */
42
+ function createScalarToken(value, context) {
43
+ const { implicitKey = false, indent, inFlow = false, offset = -1, type = 'PLAIN' } = context;
44
+ const source = stringifyString.stringifyString({ type, value }, {
45
+ implicitKey,
46
+ indent: indent > 0 ? ' '.repeat(indent) : '',
47
+ inFlow,
48
+ options: { blockQuote: true, lineWidth: -1 }
49
+ });
50
+ const end = context.end ?? [
51
+ { type: 'newline', offset: -1, indent, source: '\n' }
52
+ ];
53
+ switch (source[0]) {
54
+ case '|':
55
+ case '>': {
56
+ const he = source.indexOf('\n');
57
+ const head = source.substring(0, he);
58
+ const body = source.substring(he + 1) + '\n';
59
+ const props = [
60
+ { type: 'block-scalar-header', offset, indent, source: head }
61
+ ];
62
+ if (!addEndtoBlockProps(props, end))
63
+ props.push({ type: 'newline', offset: -1, indent, source: '\n' });
64
+ return { type: 'block-scalar', offset, indent, props, source: body };
65
+ }
66
+ case '"':
67
+ return { type: 'double-quoted-scalar', offset, indent, source, end };
68
+ case "'":
69
+ return { type: 'single-quoted-scalar', offset, indent, source, end };
70
+ default:
71
+ return { type: 'scalar', offset, indent, source, end };
72
+ }
73
+ }
74
+ /**
75
+ * Set the value of `token` to the given string `value`, overwriting any previous contents and type that it may have.
76
+ *
77
+ * Best efforts are made to retain any comments previously associated with the `token`,
78
+ * though all contents within a collection's `items` will be overwritten.
79
+ *
80
+ * Values that represent an actual string but may be parsed as a different type should use a `type` other than `'PLAIN'`,
81
+ * as this function does not support any schema operations and won't check for such conflicts.
82
+ *
83
+ * @param token Any token. If it does not include an `indent` value, the value will be stringified as if it were an implicit key.
84
+ * @param value The string representation of the value, which will have its content properly indented.
85
+ * @param context.afterKey In most cases, values after a key should have an additional level of indentation.
86
+ * @param context.implicitKey Being within an implicit key may affect the resolved type of the token's value.
87
+ * @param context.inFlow Being within a flow collection may affect the resolved type of the token's value.
88
+ * @param context.type The preferred type of the scalar token. If undefined, the previous type of the `token` will be used, defaulting to `'PLAIN'`.
89
+ */
90
+ function setScalarValue(token, value, context = {}) {
91
+ let { afterKey = false, implicitKey = false, inFlow = false, type } = context;
92
+ let indent = 'indent' in token ? token.indent : null;
93
+ if (afterKey && typeof indent === 'number')
94
+ indent += 2;
95
+ if (!type)
96
+ switch (token.type) {
97
+ case 'single-quoted-scalar':
98
+ type = 'QUOTE_SINGLE';
99
+ break;
100
+ case 'double-quoted-scalar':
101
+ type = 'QUOTE_DOUBLE';
102
+ break;
103
+ case 'block-scalar': {
104
+ const header = token.props[0];
105
+ if (header.type !== 'block-scalar-header')
106
+ throw new Error('Invalid block scalar header');
107
+ type = header.source[0] === '>' ? 'BLOCK_FOLDED' : 'BLOCK_LITERAL';
108
+ break;
109
+ }
110
+ default:
111
+ type = 'PLAIN';
112
+ }
113
+ const source = stringifyString.stringifyString({ type, value }, {
114
+ implicitKey: implicitKey || indent === null,
115
+ indent: indent !== null && indent > 0 ? ' '.repeat(indent) : '',
116
+ inFlow,
117
+ options: { blockQuote: true, lineWidth: -1 }
118
+ });
119
+ switch (source[0]) {
120
+ case '|':
121
+ case '>':
122
+ setBlockScalarValue(token, source);
123
+ break;
124
+ case '"':
125
+ setFlowScalarValue(token, source, 'double-quoted-scalar');
126
+ break;
127
+ case "'":
128
+ setFlowScalarValue(token, source, 'single-quoted-scalar');
129
+ break;
130
+ default:
131
+ setFlowScalarValue(token, source, 'scalar');
132
+ }
133
+ }
134
+ function setBlockScalarValue(token, source) {
135
+ const he = source.indexOf('\n');
136
+ const head = source.substring(0, he);
137
+ const body = source.substring(he + 1) + '\n';
138
+ if (token.type === 'block-scalar') {
139
+ const header = token.props[0];
140
+ if (header.type !== 'block-scalar-header')
141
+ throw new Error('Invalid block scalar header');
142
+ header.source = head;
143
+ token.source = body;
144
+ }
145
+ else {
146
+ const { offset } = token;
147
+ const indent = 'indent' in token ? token.indent : -1;
148
+ const props = [
149
+ { type: 'block-scalar-header', offset, indent, source: head }
150
+ ];
151
+ if (!addEndtoBlockProps(props, 'end' in token ? token.end : undefined))
152
+ props.push({ type: 'newline', offset: -1, indent, source: '\n' });
153
+ for (const key of Object.keys(token))
154
+ if (key !== 'type' && key !== 'offset')
155
+ delete token[key];
156
+ Object.assign(token, { type: 'block-scalar', indent, props, source: body });
157
+ }
158
+ }
159
+ /** @returns `true` if last token is a newline */
160
+ function addEndtoBlockProps(props, end) {
161
+ if (end)
162
+ for (const st of end)
163
+ switch (st.type) {
164
+ case 'space':
165
+ case 'comment':
166
+ props.push(st);
167
+ break;
168
+ case 'newline':
169
+ props.push(st);
170
+ return true;
171
+ }
172
+ return false;
173
+ }
174
+ function setFlowScalarValue(token, source, type) {
175
+ switch (token.type) {
176
+ case 'scalar':
177
+ case 'double-quoted-scalar':
178
+ case 'single-quoted-scalar':
179
+ token.type = type;
180
+ token.source = source;
181
+ break;
182
+ case 'block-scalar': {
183
+ const end = token.props.slice(1);
184
+ let oa = source.length;
185
+ if (token.props[0].type === 'block-scalar-header')
186
+ oa -= token.props[0].source.length;
187
+ for (const tok of end)
188
+ tok.offset += oa;
189
+ delete token.props;
190
+ Object.assign(token, { type, source, end });
191
+ break;
192
+ }
193
+ case 'block-map':
194
+ case 'block-seq': {
195
+ const offset = token.offset + source.length;
196
+ const nl = { type: 'newline', offset, indent: token.indent, source: '\n' };
197
+ delete token.items;
198
+ Object.assign(token, { type, source, end: [nl] });
199
+ break;
200
+ }
201
+ default: {
202
+ const indent = 'indent' in token ? token.indent : -1;
203
+ const end = 'end' in token && Array.isArray(token.end)
204
+ ? token.end.filter(st => st.type === 'space' ||
205
+ st.type === 'comment' ||
206
+ st.type === 'newline')
207
+ : [];
208
+ for (const key of Object.keys(token))
209
+ if (key !== 'type' && key !== 'offset')
210
+ delete token[key];
211
+ Object.assign(token, { type, indent, source, end });
212
+ }
213
+ }
214
+ }
215
+
216
+ exports.createScalarToken = createScalarToken;
217
+ exports.resolveAsScalar = resolveAsScalar;
218
+ exports.setScalarValue = setScalarValue;