shelfware 0.0.1 → 0.1.0

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/4c307968-4837-497b-a570-d6ee336accc4.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 +158 -0
  204. package/bin/shelfware.mjs +6 -0
  205. package/package.json +64 -5
  206. package/cli.mjs +0 -3
@@ -0,0 +1,518 @@
1
+ import { h as hasOwn } from './shared/unhead.Bf_fPVYA.mjs';
2
+
3
+ const TAG_HTML = 0;
4
+ const TAG_HEAD = 1;
5
+ const TAG_TITLE = 4;
6
+ const TAG_META = 5;
7
+ const TAG_BODY = 44;
8
+ const TAG_SCRIPT = 52;
9
+ const TAG_STYLE = 53;
10
+ const TAG_LINK = 54;
11
+ const TAG_BASE = 56;
12
+ const LT_CHAR = 60;
13
+ const GT_CHAR = 62;
14
+ const SLASH_CHAR = 47;
15
+ const EQUALS_CHAR = 61;
16
+ const QUOTE_CHAR = 34;
17
+ const APOS_CHAR = 39;
18
+ const EXCLAMATION_CHAR = 33;
19
+ const BACKSLASH_CHAR = 92;
20
+ const DASH_CHAR = 45;
21
+ const TagIdMap = {
22
+ html: TAG_HTML,
23
+ head: TAG_HEAD,
24
+ title: TAG_TITLE,
25
+ meta: TAG_META,
26
+ body: TAG_BODY,
27
+ script: TAG_SCRIPT,
28
+ style: TAG_STYLE,
29
+ link: TAG_LINK,
30
+ base: TAG_BASE
31
+ };
32
+ const HEAD_ELEMENTS_TO_EXTRACT = /* @__PURE__ */ new Set([TAG_TITLE, TAG_META, TAG_LINK, TAG_SCRIPT, TAG_STYLE, TAG_BASE]);
33
+ function prepareTemplate(html) {
34
+ const template = parseHtmlForIndexes(html);
35
+ Object.freeze(template.input);
36
+ Object.freeze(template.indexes);
37
+ return Object.freeze(template);
38
+ }
39
+ function isWhitespace(charCode) {
40
+ return charCode === 32 || charCode === 9 || charCode === 10 || charCode === 13;
41
+ }
42
+ function processCommentOrDoctype(htmlChunk, position) {
43
+ let i = position;
44
+ const chunkLength = htmlChunk.length;
45
+ if (i + 3 < chunkLength && htmlChunk.charCodeAt(i + 2) === DASH_CHAR && htmlChunk.charCodeAt(i + 3) === DASH_CHAR) {
46
+ i += 4;
47
+ while (i < chunkLength - 2) {
48
+ if (htmlChunk.charCodeAt(i) === DASH_CHAR && htmlChunk.charCodeAt(i + 1) === DASH_CHAR && htmlChunk.charCodeAt(i + 2) === GT_CHAR) {
49
+ i += 3;
50
+ return {
51
+ complete: true,
52
+ newPosition: i,
53
+ remainingText: ""
54
+ };
55
+ }
56
+ i++;
57
+ }
58
+ return {
59
+ complete: false,
60
+ newPosition: position,
61
+ remainingText: htmlChunk.substring(position)
62
+ };
63
+ } else {
64
+ i += 2;
65
+ while (i < chunkLength) {
66
+ if (htmlChunk.charCodeAt(i) === GT_CHAR) {
67
+ i++;
68
+ return {
69
+ complete: true,
70
+ newPosition: i,
71
+ remainingText: ""
72
+ };
73
+ }
74
+ i++;
75
+ }
76
+ return {
77
+ complete: false,
78
+ newPosition: i,
79
+ remainingText: htmlChunk.substring(position, i)
80
+ };
81
+ }
82
+ }
83
+ function parseAttributes(attrStr) {
84
+ if (!attrStr)
85
+ return {};
86
+ const result = {};
87
+ const setAttr = (attrName, value) => {
88
+ if (!hasOwn(result, attrName))
89
+ result[attrName] = value;
90
+ };
91
+ const len = attrStr.length;
92
+ let i = 0;
93
+ const WHITESPACE = 0;
94
+ const NAME = 1;
95
+ const AFTER_NAME = 2;
96
+ const BEFORE_VALUE = 3;
97
+ const QUOTED_VALUE = 4;
98
+ const UNQUOTED_VALUE = 5;
99
+ let state = WHITESPACE;
100
+ let nameStart = 0;
101
+ let nameEnd = 0;
102
+ let valueStart = 0;
103
+ let quoteChar = 0;
104
+ let name = "";
105
+ while (i < len) {
106
+ const charCode = attrStr.charCodeAt(i);
107
+ const isSpace = isWhitespace(charCode);
108
+ switch (state) {
109
+ case WHITESPACE:
110
+ if (!isSpace) {
111
+ state = NAME;
112
+ nameStart = i;
113
+ nameEnd = 0;
114
+ }
115
+ break;
116
+ case NAME:
117
+ if (charCode === EQUALS_CHAR || isSpace) {
118
+ nameEnd = i;
119
+ name = attrStr.substring(nameStart, nameEnd).toLowerCase();
120
+ state = charCode === EQUALS_CHAR ? BEFORE_VALUE : AFTER_NAME;
121
+ }
122
+ break;
123
+ case AFTER_NAME:
124
+ if (charCode === EQUALS_CHAR) {
125
+ state = BEFORE_VALUE;
126
+ } else if (!isSpace) {
127
+ setAttr(name, "");
128
+ state = NAME;
129
+ nameStart = i;
130
+ nameEnd = 0;
131
+ }
132
+ break;
133
+ case BEFORE_VALUE:
134
+ if (charCode === QUOTE_CHAR || charCode === APOS_CHAR) {
135
+ quoteChar = charCode;
136
+ state = QUOTED_VALUE;
137
+ valueStart = i + 1;
138
+ } else if (!isSpace) {
139
+ state = UNQUOTED_VALUE;
140
+ valueStart = i;
141
+ }
142
+ break;
143
+ case QUOTED_VALUE:
144
+ if (charCode === quoteChar) {
145
+ setAttr(name, attrStr.substring(valueStart, i));
146
+ state = WHITESPACE;
147
+ }
148
+ break;
149
+ case UNQUOTED_VALUE:
150
+ if (isSpace || charCode === GT_CHAR) {
151
+ setAttr(name, attrStr.substring(valueStart, i));
152
+ state = WHITESPACE;
153
+ }
154
+ break;
155
+ }
156
+ i++;
157
+ }
158
+ if (state === QUOTED_VALUE || state === UNQUOTED_VALUE) {
159
+ if (name) {
160
+ setAttr(name, attrStr.substring(valueStart, i));
161
+ }
162
+ } else if (state === NAME || state === AFTER_NAME || state === BEFORE_VALUE) {
163
+ nameEnd = nameEnd || i;
164
+ const currentName = attrStr.substring(nameStart, nameEnd).toLowerCase();
165
+ if (currentName) {
166
+ setAttr(currentName, "");
167
+ }
168
+ }
169
+ return result;
170
+ }
171
+ function parseHtmlForIndexes(html) {
172
+ const indexes = {
173
+ htmlTagStart: html.indexOf("<html"),
174
+ htmlTagEnd: -1,
175
+ headTagEnd: html.indexOf("</head>"),
176
+ bodyTagStart: html.indexOf("<body"),
177
+ bodyTagEnd: -1,
178
+ bodyCloseTagStart: html.indexOf("</body>")
179
+ };
180
+ if (indexes.htmlTagStart >= 0) {
181
+ const htmlTagEndPos = html.indexOf(">", indexes.htmlTagStart);
182
+ if (htmlTagEndPos >= 0) {
183
+ indexes.htmlTagEnd = htmlTagEndPos + 1;
184
+ }
185
+ }
186
+ if (indexes.bodyTagStart >= 0) {
187
+ const bodyTagEndPos = html.indexOf(">", indexes.bodyTagStart);
188
+ if (bodyTagEndPos >= 0) {
189
+ indexes.bodyTagEnd = bodyTagEndPos + 1;
190
+ }
191
+ }
192
+ return { html, input: {}, indexes };
193
+ }
194
+ function parseHtmlForUnheadExtraction(html) {
195
+ const input = {};
196
+ const htmlParts = [];
197
+ let position = 0;
198
+ let inHead = false;
199
+ let foundBodyStart = false;
200
+ let lastCopyPosition = 0;
201
+ let currentOutputLength = 0;
202
+ const indexes = {
203
+ htmlTagStart: -1,
204
+ htmlTagEnd: -1,
205
+ headTagEnd: -1,
206
+ bodyTagStart: -1,
207
+ bodyTagEnd: -1,
208
+ bodyCloseTagStart: -1
209
+ };
210
+ function copyAccumulatedText() {
211
+ if (lastCopyPosition < position) {
212
+ const textToAdd = html.substring(lastCopyPosition, position);
213
+ htmlParts.push(textToAdd);
214
+ currentOutputLength += textToAdd.length;
215
+ lastCopyPosition = position;
216
+ }
217
+ }
218
+ function addText(text) {
219
+ htmlParts.push(text);
220
+ currentOutputLength += text.length;
221
+ }
222
+ while (position < html.length && !foundBodyStart) {
223
+ const currentCharCode = html.charCodeAt(position);
224
+ if (currentCharCode !== LT_CHAR) {
225
+ position++;
226
+ continue;
227
+ }
228
+ if (position + 1 >= html.length) {
229
+ copyAccumulatedText();
230
+ addText(html[position]);
231
+ break;
232
+ }
233
+ const nextCharCode = html.charCodeAt(position + 1);
234
+ if (nextCharCode === EXCLAMATION_CHAR) {
235
+ const result = processCommentOrDoctype(html, position);
236
+ if (result.complete) {
237
+ copyAccumulatedText();
238
+ addText(html.substring(position, result.newPosition));
239
+ position = result.newPosition;
240
+ lastCopyPosition = position;
241
+ } else {
242
+ copyAccumulatedText();
243
+ addText(html.substring(position));
244
+ break;
245
+ }
246
+ continue;
247
+ }
248
+ if (nextCharCode === SLASH_CHAR) {
249
+ let tagEnd2 = position + 2;
250
+ while (tagEnd2 < html.length && html.charCodeAt(tagEnd2) !== GT_CHAR) {
251
+ tagEnd2++;
252
+ }
253
+ if (tagEnd2 >= html.length) {
254
+ copyAccumulatedText();
255
+ addText(html.substring(position));
256
+ break;
257
+ }
258
+ const tagName2 = html.substring(position + 2, tagEnd2).toLowerCase().trim();
259
+ const tagId2 = TagIdMap[tagName2] ?? -1;
260
+ if (tagId2 === TAG_HEAD) {
261
+ inHead = false;
262
+ copyAccumulatedText();
263
+ const headCloseStart = currentOutputLength;
264
+ addText(html.substring(position, tagEnd2 + 1));
265
+ indexes.headTagEnd = headCloseStart;
266
+ } else {
267
+ copyAccumulatedText();
268
+ addText(html.substring(position, tagEnd2 + 1));
269
+ }
270
+ position = tagEnd2 + 1;
271
+ lastCopyPosition = position;
272
+ continue;
273
+ }
274
+ const tagStart = position + 1;
275
+ let tagNameEnd = tagStart;
276
+ while (tagNameEnd < html.length) {
277
+ const c = html.charCodeAt(tagNameEnd);
278
+ if (isWhitespace(c) || c === SLASH_CHAR || c === GT_CHAR) {
279
+ break;
280
+ }
281
+ tagNameEnd++;
282
+ }
283
+ if (tagNameEnd >= html.length) {
284
+ copyAccumulatedText();
285
+ addText(html.substring(position));
286
+ break;
287
+ }
288
+ const tagName = html.substring(tagStart, tagNameEnd).toLowerCase();
289
+ const tagId = TagIdMap[tagName] ?? -1;
290
+ let tagEnd = tagNameEnd;
291
+ let inQuote = false;
292
+ let quoteChar = 0;
293
+ let foundEnd = false;
294
+ let isSelfClosing = false;
295
+ while (tagEnd < html.length && !foundEnd) {
296
+ const c = html.charCodeAt(tagEnd);
297
+ if (inQuote) {
298
+ if (c === quoteChar) {
299
+ inQuote = false;
300
+ }
301
+ } else if (c === QUOTE_CHAR || c === APOS_CHAR) {
302
+ inQuote = true;
303
+ quoteChar = c;
304
+ } else if (c === SLASH_CHAR && tagEnd + 1 < html.length && html.charCodeAt(tagEnd + 1) === GT_CHAR) {
305
+ isSelfClosing = true;
306
+ tagEnd += 2;
307
+ foundEnd = true;
308
+ continue;
309
+ } else if (c === GT_CHAR) {
310
+ tagEnd++;
311
+ foundEnd = true;
312
+ continue;
313
+ }
314
+ tagEnd++;
315
+ }
316
+ if (!foundEnd) {
317
+ copyAccumulatedText();
318
+ addText(html.substring(position));
319
+ break;
320
+ }
321
+ const attributesStr = html.substring(tagNameEnd, tagEnd - (isSelfClosing ? 2 : 1)).trim();
322
+ const attributes = parseAttributes(attributesStr);
323
+ if (tagId === TAG_HTML) {
324
+ copyAccumulatedText();
325
+ indexes.htmlTagStart = currentOutputLength;
326
+ if (Object.keys(attributes).length > 0) {
327
+ input.htmlAttrs = attributes;
328
+ addText(`<${tagName}>`);
329
+ } else {
330
+ addText(html.substring(position, tagEnd));
331
+ }
332
+ indexes.htmlTagEnd = currentOutputLength;
333
+ } else if (tagId === TAG_BODY) {
334
+ copyAccumulatedText();
335
+ indexes.bodyTagStart = currentOutputLength;
336
+ if (Object.keys(attributes).length > 0) {
337
+ input.bodyAttrs = attributes;
338
+ addText(`<${tagName}>`);
339
+ } else {
340
+ addText(html.substring(position, tagEnd));
341
+ }
342
+ indexes.bodyTagEnd = currentOutputLength;
343
+ foundBodyStart = true;
344
+ position = tagEnd;
345
+ lastCopyPosition = position;
346
+ break;
347
+ } else if (tagId === TAG_HEAD) {
348
+ inHead = true;
349
+ copyAccumulatedText();
350
+ addText(html.substring(position, tagEnd));
351
+ } else if (inHead && HEAD_ELEMENTS_TO_EXTRACT.has(tagId)) {
352
+ if (tagId === TAG_TITLE) {
353
+ if (!isSelfClosing) {
354
+ const titleEnd = findClosingTag(html, tagEnd, tagName);
355
+ if (titleEnd !== -1) {
356
+ const titleContent = html.substring(tagEnd, titleEnd).trim();
357
+ if (titleContent && !input.title) {
358
+ input.title = titleContent;
359
+ }
360
+ position = findTagEnd(html, titleEnd, tagName);
361
+ lastCopyPosition = position;
362
+ continue;
363
+ }
364
+ }
365
+ } else if (tagId === TAG_SCRIPT) {
366
+ const scriptAttrs = { ...attributes };
367
+ if (!isSelfClosing) {
368
+ const scriptEnd = findClosingTag(html, tagEnd, tagName);
369
+ if (scriptEnd !== -1) {
370
+ const scriptContent = html.substring(tagEnd, scriptEnd);
371
+ scriptAttrs.innerHTML = scriptContent || "";
372
+ position = findTagEnd(html, scriptEnd, tagName);
373
+ } else {
374
+ scriptAttrs.innerHTML = "";
375
+ position = tagEnd;
376
+ }
377
+ } else {
378
+ scriptAttrs.innerHTML = "";
379
+ position = tagEnd;
380
+ }
381
+ lastCopyPosition = position;
382
+ (input.script ||= []).push(scriptAttrs);
383
+ continue;
384
+ } else if (tagId === TAG_STYLE) {
385
+ const styleAttrs = { ...attributes };
386
+ if (!isSelfClosing) {
387
+ const styleEnd = findClosingTag(html, tagEnd, tagName);
388
+ if (styleEnd !== -1) {
389
+ const styleContent = html.substring(tagEnd, styleEnd);
390
+ styleAttrs.textContent = styleContent || "";
391
+ position = findTagEnd(html, styleEnd, tagName);
392
+ } else {
393
+ styleAttrs.textContent = "";
394
+ position = tagEnd;
395
+ }
396
+ } else {
397
+ styleAttrs.textContent = "";
398
+ position = tagEnd;
399
+ }
400
+ lastCopyPosition = position;
401
+ (input.style ||= []).push(styleAttrs);
402
+ continue;
403
+ } else if (tagId === TAG_META) {
404
+ (input.meta ||= []).push(attributes);
405
+ position = tagEnd;
406
+ lastCopyPosition = position;
407
+ continue;
408
+ } else if (tagId === TAG_LINK) {
409
+ (input.link ||= []).push(attributes);
410
+ position = tagEnd;
411
+ lastCopyPosition = position;
412
+ continue;
413
+ } else if (tagId === TAG_BASE && !input.base) {
414
+ input.base = attributes;
415
+ position = tagEnd;
416
+ lastCopyPosition = position;
417
+ continue;
418
+ }
419
+ } else {
420
+ copyAccumulatedText();
421
+ addText(html.substring(position, tagEnd));
422
+ }
423
+ position = tagEnd;
424
+ lastCopyPosition = position;
425
+ }
426
+ const remainingHtml = html.substring(position);
427
+ const bodyCloseIndex = remainingHtml.indexOf("</body>");
428
+ if (bodyCloseIndex !== -1) {
429
+ indexes.bodyCloseTagStart = currentOutputLength + bodyCloseIndex;
430
+ }
431
+ copyAccumulatedText();
432
+ addText(remainingHtml);
433
+ return { html: htmlParts.join(""), input, indexes };
434
+ }
435
+ function findClosingTag(html, startPos, tagName) {
436
+ const tagId = TagIdMap[tagName];
437
+ const isScriptOrStyle = tagId === TAG_SCRIPT || tagId === TAG_STYLE;
438
+ if (!isScriptOrStyle) {
439
+ const closingTag2 = `</${tagName}`;
440
+ const index = html.indexOf(closingTag2, startPos);
441
+ return index === -1 ? -1 : index;
442
+ }
443
+ const closingTag = `</${tagName}`;
444
+ let pos = startPos;
445
+ let inSingleQuote = false;
446
+ let inDoubleQuote = false;
447
+ let inBacktick = false;
448
+ let lastCharWasBackslash = false;
449
+ while (pos < html.length) {
450
+ const currentCharCode = html.charCodeAt(pos);
451
+ if (!lastCharWasBackslash) {
452
+ if (currentCharCode === APOS_CHAR && !inDoubleQuote && !inBacktick) {
453
+ inSingleQuote = !inSingleQuote;
454
+ } else if (currentCharCode === QUOTE_CHAR && !inSingleQuote && !inBacktick) {
455
+ inDoubleQuote = !inDoubleQuote;
456
+ } else if (currentCharCode === 96 && !inSingleQuote && !inDoubleQuote) {
457
+ inBacktick = !inBacktick;
458
+ }
459
+ }
460
+ lastCharWasBackslash = currentCharCode === BACKSLASH_CHAR && !lastCharWasBackslash;
461
+ const inQuotes = inSingleQuote || inDoubleQuote || inBacktick;
462
+ if (!inQuotes && html.startsWith(closingTag, pos)) {
463
+ const afterTagPos = pos + closingTag.length;
464
+ if (afterTagPos >= html.length) {
465
+ return pos;
466
+ }
467
+ const nextChar = html.charCodeAt(afterTagPos);
468
+ if (nextChar === GT_CHAR || isWhitespace(nextChar)) {
469
+ return pos;
470
+ }
471
+ }
472
+ pos++;
473
+ }
474
+ return -1;
475
+ }
476
+ function findTagEnd(html, closingTagStart, tagName) {
477
+ let pos = closingTagStart + tagName.length + 2;
478
+ while (pos < html.length && html.charCodeAt(pos) !== GT_CHAR) {
479
+ pos++;
480
+ }
481
+ return pos < html.length ? pos + 1 : pos;
482
+ }
483
+ function applyHeadToHtml(template, headHtml) {
484
+ const { html, indexes } = template;
485
+ const parts = [];
486
+ let lastIndex = 0;
487
+ if (indexes.htmlTagStart >= 0) {
488
+ parts.push(html.substring(lastIndex, indexes.htmlTagStart));
489
+ parts.push(`<html${headHtml.htmlAttrs}>`);
490
+ lastIndex = indexes.htmlTagEnd;
491
+ }
492
+ if (indexes.headTagEnd >= 0) {
493
+ parts.push(html.substring(lastIndex, indexes.headTagEnd));
494
+ parts.push(headHtml.headTags);
495
+ parts.push("</head>");
496
+ lastIndex = indexes.headTagEnd + 7;
497
+ }
498
+ if (indexes.bodyTagStart >= 0) {
499
+ parts.push(html.substring(lastIndex, indexes.bodyTagStart));
500
+ if (headHtml.bodyTagsOpen) {
501
+ parts.push(`<body${headHtml.bodyAttrs}>
502
+ ${headHtml.bodyTagsOpen}`);
503
+ } else {
504
+ parts.push(`<body${headHtml.bodyAttrs}>`);
505
+ }
506
+ lastIndex = indexes.bodyTagEnd;
507
+ }
508
+ if (indexes.bodyCloseTagStart >= 0) {
509
+ parts.push(html.substring(lastIndex, indexes.bodyCloseTagStart));
510
+ parts.push(headHtml.bodyTags);
511
+ parts.push(html.substring(indexes.bodyCloseTagStart));
512
+ } else {
513
+ parts.push(html.substring(lastIndex));
514
+ }
515
+ return parts.join("");
516
+ }
517
+
518
+ export { TagIdMap, applyHeadToHtml, parseAttributes, parseHtmlForIndexes, parseHtmlForUnheadExtraction, prepareTemplate };