@hyperfixi/core 2.0.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.
- package/LICENSE +21 -0
- package/README.md +218 -0
- package/dist/__test-utils__/context-builders.d.ts +42 -0
- package/dist/__test-utils__/error-testing.d.ts +18 -0
- package/dist/__test-utils__/index.d.ts +6 -0
- package/dist/__test-utils__/mock-types.d.ts +57 -0
- package/dist/__test-utils__/parser-context-mock.d.ts +7 -0
- package/dist/__test-utils__/parser-helpers.d.ts +38 -0
- package/dist/api/dom-processor.d.ts +17 -0
- package/dist/api/hyperscript-api.d.ts +68 -0
- package/dist/api/lokascript-api.d.ts +9 -0
- package/dist/ast-utils/analyzer.d.ts +19 -0
- package/dist/ast-utils/documentation.d.ts +8 -0
- package/dist/ast-utils/generator.d.ts +9 -0
- package/dist/ast-utils/index.d.ts +12 -0
- package/dist/ast-utils/index.js +3366 -0
- package/dist/ast-utils/index.mjs +3320 -0
- package/dist/ast-utils/interchange/from-core.d.ts +8 -0
- package/dist/ast-utils/interchange/index.d.ts +6 -0
- package/dist/ast-utils/interchange/lsp.d.ts +108 -0
- package/dist/ast-utils/interchange/to-core.d.ts +8 -0
- package/dist/ast-utils/interchange/types.d.ts +113 -0
- package/dist/ast-utils/query.d.ts +25 -0
- package/dist/ast-utils/transformer.d.ts +14 -0
- package/dist/ast-utils/types.d.ts +162 -0
- package/dist/ast-utils/visitor.d.ts +40 -0
- package/dist/behaviors/boosted.d.ts +29 -0
- package/dist/behaviors/history-swap.d.ts +24 -0
- package/dist/behaviors/index.d.ts +4 -0
- package/dist/behaviors/index.js +1149 -0
- package/dist/behaviors/index.mjs +1139 -0
- package/dist/bundle-generator/generator.d.ts +4 -0
- package/dist/bundle-generator/index.d.ts +6 -0
- package/dist/bundle-generator/index.js +2294 -0
- package/dist/bundle-generator/index.mjs +2271 -0
- package/dist/bundle-generator/parser-templates.d.ts +6 -0
- package/dist/bundle-generator/template-capabilities.d.ts +10 -0
- package/dist/bundle-generator/templates.d.ts +11 -0
- package/dist/bundle-generator/types.d.ts +34 -0
- package/dist/bundles/test-minimal.d.ts +3 -0
- package/dist/bundles/test-standard.d.ts +3 -0
- package/dist/chunks/bridge-I6ceoWxV.js +2 -0
- package/dist/chunks/browser-modular-Dv6PAV3c.js +2 -0
- package/dist/chunks/feature-eventsource-DWb514fy.js +2 -0
- package/dist/chunks/feature-sockets-3PFuvCVY.js +2 -0
- package/dist/chunks/feature-webworker-DTm_eh-E.js +2 -0
- package/dist/commands/advanced/async.d.ts +28 -0
- package/dist/commands/advanced/js.d.ts +28 -0
- package/dist/commands/animation/measure.d.ts +31 -0
- package/dist/commands/animation/settle.d.ts +26 -0
- package/dist/commands/animation/take.d.ts +28 -0
- package/dist/commands/animation/transition.d.ts +31 -0
- package/dist/commands/async/fetch.d.ts +44 -0
- package/dist/commands/async/wait.d.ts +41 -0
- package/dist/commands/behaviors/install.d.ts +41 -0
- package/dist/commands/content/append.d.ts +27 -0
- package/dist/commands/control-flow/break.d.ts +15 -0
- package/dist/commands/control-flow/continue.d.ts +15 -0
- package/dist/commands/control-flow/exit.d.ts +15 -0
- package/dist/commands/control-flow/halt.d.ts +25 -0
- package/dist/commands/control-flow/if.d.ts +45 -0
- package/dist/commands/control-flow/repeat.d.ts +35 -0
- package/dist/commands/control-flow/return.d.ts +23 -0
- package/dist/commands/control-flow/signal-base.d.ts +25 -0
- package/dist/commands/control-flow/throw.d.ts +22 -0
- package/dist/commands/control-flow/unless.d.ts +3 -0
- package/dist/commands/data/decrement.d.ts +3 -0
- package/dist/commands/data/default.d.ts +31 -0
- package/dist/commands/data/get.d.ts +23 -0
- package/dist/commands/data/increment.d.ts +25 -0
- package/dist/commands/data/set.d.ts +56 -0
- package/dist/commands/decorators/index.d.ts +30 -0
- package/dist/commands/dom/__tests__/add-standalone-helpers.d.ts +11 -0
- package/dist/commands/dom/add.d.ts +31 -0
- package/dist/commands/dom/dom-modification-base.d.ts +48 -0
- package/dist/commands/dom/hide.d.ts +12 -0
- package/dist/commands/dom/make.d.ts +21 -0
- package/dist/commands/dom/process-partials.d.ts +39 -0
- package/dist/commands/dom/put.d.ts +31 -0
- package/dist/commands/dom/remove.d.ts +33 -0
- package/dist/commands/dom/show.d.ts +13 -0
- package/dist/commands/dom/swap.d.ts +38 -0
- package/dist/commands/dom/toggle.d.ts +55 -0
- package/dist/commands/dom/visibility-base.d.ts +20 -0
- package/dist/commands/events/send.d.ts +3 -0
- package/dist/commands/events/trigger.d.ts +36 -0
- package/dist/commands/execution/call.d.ts +24 -0
- package/dist/commands/execution/pseudo-command.d.ts +42 -0
- package/dist/commands/helpers/attribute-manipulation.d.ts +11 -0
- package/dist/commands/helpers/batch-dom-operations.d.ts +12 -0
- package/dist/commands/helpers/class-manipulation.d.ts +11 -0
- package/dist/commands/helpers/condition-helpers.d.ts +4 -0
- package/dist/commands/helpers/dom-mutation.d.ts +15 -0
- package/dist/commands/helpers/duration-parsing.d.ts +8 -0
- package/dist/commands/helpers/element-property-access.d.ts +7 -0
- package/dist/commands/helpers/element-resolution.d.ts +17 -0
- package/dist/commands/helpers/error-helpers.d.ts +17 -0
- package/dist/commands/helpers/event-helpers.d.ts +13 -0
- package/dist/commands/helpers/event-waiting.d.ts +37 -0
- package/dist/commands/helpers/index.d.ts +32 -0
- package/dist/commands/helpers/input-validator.d.ts +23 -0
- package/dist/commands/helpers/loop-executor.d.ts +53 -0
- package/dist/commands/helpers/numeric-target-parser.d.ts +14 -0
- package/dist/commands/helpers/property-target.d.ts +30 -0
- package/dist/commands/helpers/selector-type-detection.d.ts +24 -0
- package/dist/commands/helpers/smart-element.d.ts +16 -0
- package/dist/commands/helpers/style-manipulation.d.ts +16 -0
- package/dist/commands/helpers/temporal-modifiers.d.ts +15 -0
- package/dist/commands/helpers/url-argument-parser.d.ts +10 -0
- package/dist/commands/helpers/url-validation.d.ts +7 -0
- package/dist/commands/helpers/variable-access.d.ts +10 -0
- package/dist/commands/helpers/visibility-target-parser.d.ts +11 -0
- package/dist/commands/index.d.ts +139 -0
- package/dist/commands/index.js +9186 -0
- package/dist/commands/index.mjs +9032 -0
- package/dist/commands/navigation/go.d.ts +35 -0
- package/dist/commands/navigation/push-url.d.ts +35 -0
- package/dist/commands/navigation/replace-url.d.ts +3 -0
- package/dist/commands/templates/render.d.ts +48 -0
- package/dist/commands/utility/beep.d.ts +32 -0
- package/dist/commands/utility/copy.d.ts +29 -0
- package/dist/commands/utility/log.d.ts +24 -0
- package/dist/commands/utility/pick.d.ts +26 -0
- package/dist/commands/utility/tell.d.ts +26 -0
- package/dist/compatibility/browser-bundle-animation-generated.d.ts +16 -0
- package/dist/compatibility/browser-bundle-classic-i18n.d.ts +63 -0
- package/dist/compatibility/browser-bundle-classic.d.ts +17 -0
- package/dist/compatibility/browser-bundle-forms-generated.d.ts +16 -0
- package/dist/compatibility/browser-bundle-hybrid-complete.d.ts +28 -0
- package/dist/compatibility/browser-bundle-hybrid-hx.d.ts +43 -0
- package/dist/compatibility/browser-bundle-lite-plus.d.ts +25 -0
- package/dist/compatibility/browser-bundle-lite.d.ts +23 -0
- package/dist/compatibility/browser-bundle-minimal-generated.d.ts +16 -0
- package/dist/compatibility/browser-bundle-minimal-v2.d.ts +17 -0
- package/dist/compatibility/browser-bundle-minimal.d.ts +8 -0
- package/dist/compatibility/browser-bundle-modular.d.ts +18 -0
- package/dist/compatibility/browser-bundle-multilingual.d.ts +19 -0
- package/dist/compatibility/browser-bundle-semantic-complete.d.ts +24 -0
- package/dist/compatibility/browser-bundle-standard-v2.d.ts +17 -0
- package/dist/compatibility/browser-bundle-standard.d.ts +8 -0
- package/dist/compatibility/browser-bundle-textshelf-minimal.d.ts +16 -0
- package/dist/compatibility/browser-bundle-textshelf-profile.d.ts +18 -0
- package/dist/compatibility/browser-bundle.d.ts +140 -0
- package/dist/compatibility/browser-modular.d.ts +53 -0
- package/dist/compatibility/browser-tests/test-utils.d.ts +21 -0
- package/dist/compatibility/eval-hyperscript.d.ts +15 -0
- package/dist/compatibility/feature-loader.d.ts +8 -0
- package/dist/compatibility/hyperscript-adapter.d.ts +38 -0
- package/dist/compatibility/hyperscript-tests/test-adapter.d.ts +13 -0
- package/dist/core/ast-property-utils.d.ts +2 -0
- package/dist/core/base-expression-evaluator.d.ts +70 -0
- package/dist/core/binary-expression-evaluator.d.ts +7 -0
- package/dist/core/call-expression-evaluator.d.ts +7 -0
- package/dist/core/configurable-expression-evaluator.d.ts +5 -0
- package/dist/core/context.d.ts +15 -0
- package/dist/core/dom.d.ts +15 -0
- package/dist/core/evaluator-types.d.ts +5 -0
- package/dist/core/events.d.ts +48 -0
- package/dist/core/executor.d.ts +34 -0
- package/dist/core/expression-evaluator.d.ts +6 -0
- package/dist/core/lazy-expression-evaluator.d.ts +22 -0
- package/dist/core/parser.d.ts +21 -0
- package/dist/core/selector-evaluator.d.ts +15 -0
- package/dist/core/template-literal-evaluator.d.ts +5 -0
- package/dist/dom/attribute-processor.d.ts +40 -0
- package/dist/dom/minimal-attribute-processor.d.ts +20 -0
- package/dist/experimental/binary-tree/accessor.d.ts +10 -0
- package/dist/experimental/binary-tree/ast-serializer.d.ts +26 -0
- package/dist/experimental/binary-tree/benchmark.d.ts +24 -0
- package/dist/experimental/binary-tree/buffer-context.d.ts +27 -0
- package/dist/experimental/binary-tree/deserializer.d.ts +17 -0
- package/dist/experimental/binary-tree/index.d.ts +22 -0
- package/dist/experimental/binary-tree/serializer.d.ts +4 -0
- package/dist/experimental/binary-tree/types.d.ts +54 -0
- package/dist/expressions/base-expression.d.ts +27 -0
- package/dist/expressions/bundles/common-expressions.d.ts +9 -0
- package/dist/expressions/bundles/core-expressions.d.ts +7 -0
- package/dist/expressions/bundles/full-expressions.d.ts +10 -0
- package/dist/expressions/bundles/index.d.ts +7 -0
- package/dist/expressions/comparison/index.d.ts +80 -0
- package/dist/expressions/comparison/utils.d.ts +2 -0
- package/dist/expressions/conversion/impl/bridge.d.ts +117 -0
- package/dist/expressions/conversion/impl/index.d.ts +59 -0
- package/dist/expressions/conversion/index.d.ts +23 -0
- package/dist/expressions/expression-tiers.d.ts +13 -0
- package/dist/expressions/index.d.ts +11 -0
- package/dist/expressions/index.js +6930 -0
- package/dist/expressions/index.mjs +6912 -0
- package/dist/expressions/logical/impl/index.d.ts +54 -0
- package/dist/expressions/logical/impl/pattern-matching.d.ts +58 -0
- package/dist/expressions/logical/index.d.ts +59 -0
- package/dist/expressions/mathematical/index.d.ts +69 -0
- package/dist/expressions/positional/impl/bridge.d.ts +95 -0
- package/dist/expressions/positional/impl/index.d.ts +73 -0
- package/dist/expressions/positional/index.d.ts +26 -0
- package/dist/expressions/properties/impl/index.d.ts +105 -0
- package/dist/expressions/properties/index.d.ts +26 -0
- package/dist/expressions/property/index.d.ts +55 -0
- package/dist/expressions/property-access-utils.d.ts +23 -0
- package/dist/expressions/references/impl/bridge.d.ts +54 -0
- package/dist/expressions/references/impl/index.d.ts +65 -0
- package/dist/expressions/references/index.d.ts +40 -0
- package/dist/expressions/shared/comparison-utils.d.ts +10 -0
- package/dist/expressions/shared/index.d.ts +9 -0
- package/dist/expressions/shared/number-utils.d.ts +7 -0
- package/dist/expressions/shared/validation-utils.d.ts +13 -0
- package/dist/expressions/special/index.d.ts +104 -0
- package/dist/expressions/type-helpers.d.ts +11 -0
- package/dist/expressions/type-registry.d.ts +57 -0
- package/dist/expressions/validation-helpers.d.ts +15 -0
- package/dist/extensions/index.d.ts +3 -0
- package/dist/extensions/tailwind.d.ts +22 -0
- package/dist/features/behaviors.d.ts +153 -0
- package/dist/features/def.d.ts +135 -0
- package/dist/features/eventsource.d.ts +140 -0
- package/dist/features/init.d.ts +135 -0
- package/dist/features/on.d.ts +131 -0
- package/dist/features/predefined-behaviors/dropdown-behavior.d.ts +20 -0
- package/dist/features/predefined-behaviors/index.d.ts +12 -0
- package/dist/features/predefined-behaviors/modal-behavior.d.ts +18 -0
- package/dist/features/predefined-behaviors/toggle-group-behavior.d.ts +23 -0
- package/dist/features/predefined-behaviors/types.d.ts +14 -0
- package/dist/features/sockets.d.ts +162 -0
- package/dist/features/webworker.d.ts +135 -0
- package/dist/htmx/htmx-attribute-processor.d.ts +84 -0
- package/dist/htmx/htmx-translator.d.ts +19 -0
- package/dist/htmx/index.d.ts +3 -0
- package/dist/hyperfixi-classic-i18n.js +2 -0
- package/dist/hyperfixi-hx.js +1 -0
- package/dist/hyperfixi-hybrid-complete.js +1 -0
- package/dist/hyperfixi-lite-plus.js +1 -0
- package/dist/hyperfixi-lite.js +1 -0
- package/dist/hyperfixi-minimal.js +1 -0
- package/dist/hyperfixi-multilingual.js +2 -0
- package/dist/hyperfixi-standard.js +2 -0
- package/dist/hyperfixi.js +2 -0
- package/dist/hyperfixi.mjs +2 -0
- package/dist/index.d.ts +25 -0
- package/dist/index.js +65387 -0
- package/dist/index.min.js +2 -0
- package/dist/index.mjs +65343 -0
- package/dist/lib/index.d.ts +4 -0
- package/dist/lib/morph-adapter.d.ts +22 -0
- package/dist/lib/swap-executor.d.ts +22 -0
- package/dist/lib/view-transitions.d.ts +33 -0
- package/dist/lokascript-browser-classic-i18n.js +2 -0
- package/dist/lokascript-browser-minimal.js +1 -0
- package/dist/lokascript-browser-standard.js +2 -0
- package/dist/lokascript-browser.js +2 -0
- package/dist/lokascript-hybrid-complete.js +1 -0
- package/dist/lokascript-hybrid-hx.js +1 -0
- package/dist/lokascript-lite-plus.js +1 -0
- package/dist/lokascript-lite.js +1 -0
- package/dist/lokascript-multilingual.js +2 -0
- package/dist/lsp-metadata.d.ts +25 -0
- package/dist/lsp-metadata.js +680 -0
- package/dist/lsp-metadata.mjs +670 -0
- package/dist/metadata.d.ts +213 -0
- package/dist/metadata.js +378 -0
- package/dist/metadata.mjs +368 -0
- package/dist/mod.d.ts +63 -0
- package/dist/multilingual/bridge.d.ts +36 -0
- package/dist/multilingual/index.d.ts +32 -0
- package/dist/multilingual/index.js +285 -0
- package/dist/multilingual/index.mjs +278 -0
- package/dist/parser/__types__/test-helpers.d.ts +25 -0
- package/dist/parser/command-node-builder.d.ts +45 -0
- package/dist/parser/command-parsers/animation-commands.d.ts +5 -0
- package/dist/parser/command-parsers/async-commands.d.ts +5 -0
- package/dist/parser/command-parsers/control-flow-commands.d.ts +7 -0
- package/dist/parser/command-parsers/dom-commands.d.ts +8 -0
- package/dist/parser/command-parsers/event-commands.d.ts +4 -0
- package/dist/parser/command-parsers/utility-commands.d.ts +9 -0
- package/dist/parser/command-parsers/variable-commands.d.ts +12 -0
- package/dist/parser/error-handler.d.ts +34 -0
- package/dist/parser/expression-parser.d.ts +6 -0
- package/dist/parser/full-parser.d.ts +4 -0
- package/dist/parser/full-parser.js +6532 -0
- package/dist/parser/full-parser.mjs +6529 -0
- package/dist/parser/helpers/ast-helpers.d.ts +22 -0
- package/dist/parser/helpers/parsing-helpers.d.ts +19 -0
- package/dist/parser/helpers/token-helpers.d.ts +28 -0
- package/dist/parser/hybrid/aliases.d.ts +7 -0
- package/dist/parser/hybrid/aliases.js +44 -0
- package/dist/parser/hybrid/aliases.mjs +37 -0
- package/dist/parser/hybrid/ast-types.d.ts +97 -0
- package/dist/parser/hybrid/ast-types.js +3 -0
- package/dist/parser/hybrid/ast-types.mjs +2 -0
- package/dist/parser/hybrid/index.d.ts +6 -0
- package/dist/parser/hybrid/index.js +1015 -0
- package/dist/parser/hybrid/index.mjs +1005 -0
- package/dist/parser/hybrid/parser-core.d.ts +57 -0
- package/dist/parser/hybrid/parser-core.js +1001 -0
- package/dist/parser/hybrid/parser-core.mjs +999 -0
- package/dist/parser/hybrid/tokenizer.d.ts +9 -0
- package/dist/parser/hybrid/tokenizer.js +242 -0
- package/dist/parser/hybrid/tokenizer.mjs +239 -0
- package/dist/parser/hybrid-parser.d.ts +10 -0
- package/dist/parser/hybrid-parser.js +1078 -0
- package/dist/parser/hybrid-parser.mjs +1071 -0
- package/dist/parser/parser-constants.d.ts +102 -0
- package/dist/parser/parser-interface.d.ts +11 -0
- package/dist/parser/parser-types.d.ts +175 -0
- package/dist/parser/parser.d.ts +146 -0
- package/dist/parser/regex-parser.d.ts +4 -0
- package/dist/parser/regex-parser.js +412 -0
- package/dist/parser/regex-parser.mjs +409 -0
- package/dist/parser/runtime.d.ts +3 -0
- package/dist/parser/semantic-integration.d.ts +61 -0
- package/dist/parser/token-consumer.d.ts +35 -0
- package/dist/parser/token-predicates.d.ts +77 -0
- package/dist/parser/tokenizer.d.ts +57 -0
- package/dist/parser/types.d.ts +118 -0
- package/dist/performance/expression-cache.d.ts +78 -0
- package/dist/performance/integration.d.ts +40 -0
- package/dist/performance/production-monitor.d.ts +67 -0
- package/dist/reference/index.d.ts +41 -0
- package/dist/reference/index.js +586 -0
- package/dist/reference/index.mjs +577 -0
- package/dist/registry/browser-types.d.ts +20 -0
- package/dist/registry/browser-types.js +81 -0
- package/dist/registry/browser-types.mjs +76 -0
- package/dist/registry/context-provider-registry.d.ts +38 -0
- package/dist/registry/environment.d.ts +19 -0
- package/dist/registry/environment.js +36 -0
- package/dist/registry/environment.mjs +30 -0
- package/dist/registry/event-source-registry.d.ts +54 -0
- package/dist/registry/examples/server-commands.d.ts +6 -0
- package/dist/registry/examples/server-event-source.d.ts +32 -0
- package/dist/registry/index.d.ts +54 -0
- package/dist/registry/index.js +7636 -0
- package/dist/registry/index.mjs +7612 -0
- package/dist/registry/multilingual/examples.d.ts +16 -0
- package/dist/registry/multilingual/index.d.ts +68 -0
- package/dist/registry/runtime-integration.d.ts +30 -0
- package/dist/registry/universal-types.d.ts +34 -0
- package/dist/registry/universal-types.js +91 -0
- package/dist/registry/universal-types.mjs +86 -0
- package/dist/runtime/cleanup-registry.d.ts +47 -0
- package/dist/runtime/command-adapter.d.ts +63 -0
- package/dist/runtime/environment.d.ts +75 -0
- package/dist/runtime/runtime-base.d.ts +78 -0
- package/dist/runtime/runtime-experimental.d.ts +18 -0
- package/dist/runtime/runtime-factory.d.ts +30 -0
- package/dist/runtime/runtime.d.ts +19 -0
- package/dist/runtime/temporal-modifiers.d.ts +37 -0
- package/dist/scripts/code-generator.d.ts +64 -0
- package/dist/scripts/generate-missing-commands.d.ts +4 -0
- package/dist/test-setup.d.ts +45 -0
- package/dist/test-utilities.d.ts +52 -0
- package/dist/tokenizer.d.ts +49 -0
- package/dist/types/base-types.d.ts +336 -0
- package/dist/types/code-fix.d.ts +39 -0
- package/dist/types/command-metadata.d.ts +57 -0
- package/dist/types/command-types.d.ts +272 -0
- package/dist/types/context-types.d.ts +106 -0
- package/dist/types/core-context.d.ts +21 -0
- package/dist/types/core.d.ts +203 -0
- package/dist/types/error-codes.d.ts +207 -0
- package/dist/types/expression-types.d.ts +155 -0
- package/dist/types/feature-types.d.ts +81 -0
- package/dist/types/hooks.d.ts +45 -0
- package/dist/types/index.d.ts +32 -0
- package/dist/types/result.d.ts +72 -0
- package/dist/types/template-types.d.ts +162 -0
- package/dist/types/type-guards.d.ts +24 -0
- package/dist/types/unified-types.d.ts +99 -0
- package/dist/utils/debug-events.d.ts +41 -0
- package/dist/utils/debug.d.ts +35 -0
- package/dist/utils/dom-utils.d.ts +16 -0
- package/dist/utils/element-check.d.ts +7 -0
- package/dist/utils/keyboard-shortcuts.d.ts +18 -0
- package/dist/utils/performance.d.ts +40 -0
- package/dist/validation/command-pattern-validator.d.ts +53 -0
- package/dist/validation/common-validators.d.ts +24 -0
- package/dist/validation/lightweight-validators.d.ts +113 -0
- package/dist/validation/partial-validation-types.d.ts +50 -0
- package/dist/validation/partial-validator.d.ts +6 -0
- package/dist/validation/partial-warning-formatter.d.ts +6 -0
- package/dist/validation/validate-cli.d.ts +41 -0
- package/package.json +292 -0
|
@@ -0,0 +1,50 @@
|
|
|
1
|
+
export type PartialValidationSeverity = 'critical' | 'structural' | 'warning';
|
|
2
|
+
export type LayoutElementCategory = 'document-root' | 'semantic-landmark' | 'sectioning' | 'metadata' | 'script-style';
|
|
3
|
+
export interface PartialValidationIssue {
|
|
4
|
+
severity: PartialValidationSeverity;
|
|
5
|
+
category: LayoutElementCategory;
|
|
6
|
+
element: string;
|
|
7
|
+
message: string;
|
|
8
|
+
suggestion: string;
|
|
9
|
+
targetSelector?: string;
|
|
10
|
+
count: number;
|
|
11
|
+
}
|
|
12
|
+
export interface PartialValidationResult {
|
|
13
|
+
valid: boolean;
|
|
14
|
+
issues: PartialValidationIssue[];
|
|
15
|
+
bySeverity: {
|
|
16
|
+
critical: PartialValidationIssue[];
|
|
17
|
+
structural: PartialValidationIssue[];
|
|
18
|
+
warning: PartialValidationIssue[];
|
|
19
|
+
};
|
|
20
|
+
totalIssues: number;
|
|
21
|
+
shouldProceed: true;
|
|
22
|
+
}
|
|
23
|
+
export interface PartialValidationConfig {
|
|
24
|
+
enabled: boolean;
|
|
25
|
+
showWarnings: boolean;
|
|
26
|
+
strictness: 'relaxed' | 'standard' | 'strict';
|
|
27
|
+
additionalCriticalElements?: string[];
|
|
28
|
+
additionalStructuralElements?: string[];
|
|
29
|
+
ignoredElements?: string[];
|
|
30
|
+
ignoredTargets?: string[];
|
|
31
|
+
customValidator?: (html: string, target: string) => PartialValidationIssue[];
|
|
32
|
+
}
|
|
33
|
+
export interface TargetValidationOverride {
|
|
34
|
+
target: string;
|
|
35
|
+
config: Partial<PartialValidationConfig>;
|
|
36
|
+
}
|
|
37
|
+
export interface GlobalPartialValidationConfig extends PartialValidationConfig {
|
|
38
|
+
targetOverrides?: TargetValidationOverride[];
|
|
39
|
+
}
|
|
40
|
+
export interface LayoutElementDefinition {
|
|
41
|
+
category: LayoutElementCategory;
|
|
42
|
+
message: string;
|
|
43
|
+
suggestion?: string;
|
|
44
|
+
}
|
|
45
|
+
export type LayoutElementMap = Record<string, LayoutElementDefinition>;
|
|
46
|
+
export type ValidatedPartialContent = string & {
|
|
47
|
+
readonly __brand: 'ValidatedPartialContent';
|
|
48
|
+
};
|
|
49
|
+
export declare function isValidatedContent(content: string): content is ValidatedPartialContent;
|
|
50
|
+
//# sourceMappingURL=partial-validation-types.d.ts.map
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
import type { PartialValidationResult, GlobalPartialValidationConfig } from './partial-validation-types';
|
|
2
|
+
export declare function configurePartialValidation(config: Partial<GlobalPartialValidationConfig>): void;
|
|
3
|
+
export declare function getPartialValidationConfig(): GlobalPartialValidationConfig;
|
|
4
|
+
export declare function resetPartialValidationConfig(): void;
|
|
5
|
+
export declare function validatePartialContent(html: string, targetSelector?: string): PartialValidationResult;
|
|
6
|
+
//# sourceMappingURL=partial-validator.d.ts.map
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
import type { PartialValidationResult, PartialValidationIssue } from './partial-validation-types';
|
|
2
|
+
export declare function emitPartialValidationWarnings(result: PartialValidationResult): void;
|
|
3
|
+
export declare function formatIssueAsString(issue: PartialValidationIssue): string;
|
|
4
|
+
export declare function formatIssuesAsStrings(result: PartialValidationResult): string[];
|
|
5
|
+
export declare function formatResultSummary(result: PartialValidationResult): string;
|
|
6
|
+
//# sourceMappingURL=partial-warning-formatter.d.ts.map
|
|
@@ -0,0 +1,41 @@
|
|
|
1
|
+
#!/usr/bin/env node
|
|
2
|
+
import { HideCommand } from '../commands/dom/hide';
|
|
3
|
+
import { ShowCommand } from '../commands/dom/show';
|
|
4
|
+
import { ToggleCommand } from '../commands/dom/toggle';
|
|
5
|
+
import { AddCommand } from '../commands/dom/add';
|
|
6
|
+
import { RemoveCommand } from '../commands/dom/remove';
|
|
7
|
+
declare const COMMAND_REGISTRY: ({
|
|
8
|
+
name: string;
|
|
9
|
+
filePath: string;
|
|
10
|
+
CommandClass: typeof HideCommand;
|
|
11
|
+
factoryFunction: () => HideCommand;
|
|
12
|
+
category: string;
|
|
13
|
+
} | {
|
|
14
|
+
name: string;
|
|
15
|
+
filePath: string;
|
|
16
|
+
CommandClass: typeof ShowCommand;
|
|
17
|
+
factoryFunction: () => ShowCommand;
|
|
18
|
+
category: string;
|
|
19
|
+
} | {
|
|
20
|
+
name: string;
|
|
21
|
+
filePath: string;
|
|
22
|
+
CommandClass: typeof ToggleCommand;
|
|
23
|
+
factoryFunction: () => ToggleCommand;
|
|
24
|
+
category: string;
|
|
25
|
+
} | {
|
|
26
|
+
name: string;
|
|
27
|
+
filePath: string;
|
|
28
|
+
CommandClass: typeof AddCommand;
|
|
29
|
+
factoryFunction: () => AddCommand;
|
|
30
|
+
category: string;
|
|
31
|
+
} | {
|
|
32
|
+
name: string;
|
|
33
|
+
filePath: string;
|
|
34
|
+
CommandClass: typeof RemoveCommand;
|
|
35
|
+
factoryFunction: () => RemoveCommand;
|
|
36
|
+
category: string;
|
|
37
|
+
})[];
|
|
38
|
+
declare function validateSingleCommand(commandName: string): Promise<void>;
|
|
39
|
+
declare function validateCommandSuite(category?: string): Promise<void>;
|
|
40
|
+
export { validateSingleCommand, validateCommandSuite, COMMAND_REGISTRY };
|
|
41
|
+
//# sourceMappingURL=validate-cli.d.ts.map
|
package/package.json
ADDED
|
@@ -0,0 +1,292 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@hyperfixi/core",
|
|
3
|
+
"version": "2.0.0",
|
|
4
|
+
"description": "Multilingual, tree-shakeable hyperscript",
|
|
5
|
+
"type": "module",
|
|
6
|
+
"main": "dist/index.js",
|
|
7
|
+
"module": "dist/index.mjs",
|
|
8
|
+
"types": "dist/index.d.ts",
|
|
9
|
+
"exports": {
|
|
10
|
+
".": {
|
|
11
|
+
"types": "./dist/index.d.ts",
|
|
12
|
+
"import": "./dist/index.mjs",
|
|
13
|
+
"require": "./dist/index.js"
|
|
14
|
+
},
|
|
15
|
+
"./browser": {
|
|
16
|
+
"types": "./dist/index.d.ts",
|
|
17
|
+
"default": "./dist/hyperfixi.js"
|
|
18
|
+
},
|
|
19
|
+
"./browser/multilingual": {
|
|
20
|
+
"types": "./dist/index.d.ts",
|
|
21
|
+
"default": "./dist/hyperfixi-multilingual.js"
|
|
22
|
+
},
|
|
23
|
+
"./browser/minimal": {
|
|
24
|
+
"types": "./dist/index.d.ts",
|
|
25
|
+
"default": "./dist/hyperfixi-minimal.js"
|
|
26
|
+
},
|
|
27
|
+
"./browser/standard": {
|
|
28
|
+
"types": "./dist/index.d.ts",
|
|
29
|
+
"default": "./dist/hyperfixi-standard.js"
|
|
30
|
+
},
|
|
31
|
+
"./browser/lite": {
|
|
32
|
+
"default": "./dist/hyperfixi-lite.js"
|
|
33
|
+
},
|
|
34
|
+
"./browser/lite-plus": {
|
|
35
|
+
"default": "./dist/hyperfixi-lite-plus.js"
|
|
36
|
+
},
|
|
37
|
+
"./browser/hybrid-complete": {
|
|
38
|
+
"default": "./dist/hyperfixi-hybrid-complete.js"
|
|
39
|
+
},
|
|
40
|
+
"./browser/hybrid-hx": {
|
|
41
|
+
"default": "./dist/hyperfixi-hx.js"
|
|
42
|
+
},
|
|
43
|
+
"./commands": {
|
|
44
|
+
"types": "./dist/commands/index.d.ts",
|
|
45
|
+
"import": "./dist/commands/index.mjs",
|
|
46
|
+
"require": "./dist/commands/index.js"
|
|
47
|
+
},
|
|
48
|
+
"./expressions": {
|
|
49
|
+
"types": "./dist/expressions/index.d.ts",
|
|
50
|
+
"import": "./dist/expressions/index.mjs",
|
|
51
|
+
"require": "./dist/expressions/index.js"
|
|
52
|
+
},
|
|
53
|
+
"./parser/full": {
|
|
54
|
+
"types": "./dist/parser/full-parser.d.ts",
|
|
55
|
+
"import": "./dist/parser/full-parser.mjs",
|
|
56
|
+
"require": "./dist/parser/full-parser.js"
|
|
57
|
+
},
|
|
58
|
+
"./parser/hybrid": {
|
|
59
|
+
"types": "./dist/parser/hybrid-parser.d.ts",
|
|
60
|
+
"import": "./dist/parser/hybrid-parser.mjs",
|
|
61
|
+
"require": "./dist/parser/hybrid-parser.js"
|
|
62
|
+
},
|
|
63
|
+
"./parser/hybrid/parser-core": {
|
|
64
|
+
"types": "./dist/parser/hybrid/parser-core.d.ts",
|
|
65
|
+
"import": "./dist/parser/hybrid/parser-core.mjs",
|
|
66
|
+
"require": "./dist/parser/hybrid/parser-core.js"
|
|
67
|
+
},
|
|
68
|
+
"./parser/hybrid/ast-types": {
|
|
69
|
+
"types": "./dist/parser/hybrid/ast-types.d.ts",
|
|
70
|
+
"import": "./dist/parser/hybrid/ast-types.mjs",
|
|
71
|
+
"require": "./dist/parser/hybrid/ast-types.js"
|
|
72
|
+
},
|
|
73
|
+
"./parser/hybrid/tokenizer": {
|
|
74
|
+
"types": "./dist/parser/hybrid/tokenizer.d.ts",
|
|
75
|
+
"import": "./dist/parser/hybrid/tokenizer.mjs",
|
|
76
|
+
"require": "./dist/parser/hybrid/tokenizer.js"
|
|
77
|
+
},
|
|
78
|
+
"./parser/hybrid/aliases": {
|
|
79
|
+
"types": "./dist/parser/hybrid/aliases.d.ts",
|
|
80
|
+
"import": "./dist/parser/hybrid/aliases.mjs",
|
|
81
|
+
"require": "./dist/parser/hybrid/aliases.js"
|
|
82
|
+
},
|
|
83
|
+
"./parser/regex": {
|
|
84
|
+
"types": "./dist/parser/regex-parser.d.ts",
|
|
85
|
+
"import": "./dist/parser/regex-parser.mjs",
|
|
86
|
+
"require": "./dist/parser/regex-parser.js"
|
|
87
|
+
},
|
|
88
|
+
"./browser/modular": {
|
|
89
|
+
"default": "./dist/hyperfixi.mjs"
|
|
90
|
+
},
|
|
91
|
+
"./behaviors": {
|
|
92
|
+
"types": "./dist/behaviors/index.d.ts",
|
|
93
|
+
"import": "./dist/behaviors/index.mjs",
|
|
94
|
+
"require": "./dist/behaviors/index.js"
|
|
95
|
+
},
|
|
96
|
+
"./multilingual": {
|
|
97
|
+
"types": "./dist/multilingual/index.d.ts",
|
|
98
|
+
"import": "./dist/multilingual/index.mjs",
|
|
99
|
+
"require": "./dist/multilingual/index.js"
|
|
100
|
+
},
|
|
101
|
+
"./bundle-generator": {
|
|
102
|
+
"types": "./dist/bundle-generator/index.d.ts",
|
|
103
|
+
"import": "./dist/bundle-generator/index.mjs",
|
|
104
|
+
"require": "./dist/bundle-generator/index.js"
|
|
105
|
+
},
|
|
106
|
+
"./registry": {
|
|
107
|
+
"types": "./dist/registry/index.d.ts",
|
|
108
|
+
"import": "./dist/registry/index.mjs",
|
|
109
|
+
"require": "./dist/registry/index.js"
|
|
110
|
+
},
|
|
111
|
+
"./registry/browser": {
|
|
112
|
+
"types": "./dist/registry/browser-types.d.ts",
|
|
113
|
+
"import": "./dist/registry/browser-types.mjs",
|
|
114
|
+
"require": "./dist/registry/browser-types.js"
|
|
115
|
+
},
|
|
116
|
+
"./registry/universal": {
|
|
117
|
+
"types": "./dist/registry/universal-types.d.ts",
|
|
118
|
+
"import": "./dist/registry/universal-types.mjs",
|
|
119
|
+
"require": "./dist/registry/universal-types.js"
|
|
120
|
+
},
|
|
121
|
+
"./registry/environment": {
|
|
122
|
+
"types": "./dist/registry/environment.d.ts",
|
|
123
|
+
"import": "./dist/registry/environment.mjs",
|
|
124
|
+
"require": "./dist/registry/environment.js"
|
|
125
|
+
},
|
|
126
|
+
"./package.json": "./package.json",
|
|
127
|
+
"./reference": {
|
|
128
|
+
"types": "./dist/reference/index.d.ts",
|
|
129
|
+
"import": "./dist/reference/index.mjs",
|
|
130
|
+
"require": "./dist/reference/index.js"
|
|
131
|
+
},
|
|
132
|
+
"./metadata": {
|
|
133
|
+
"types": "./dist/metadata.d.ts",
|
|
134
|
+
"import": "./dist/metadata.mjs",
|
|
135
|
+
"require": "./dist/metadata.js"
|
|
136
|
+
},
|
|
137
|
+
"./lsp-metadata": {
|
|
138
|
+
"types": "./dist/lsp-metadata.d.ts",
|
|
139
|
+
"import": "./dist/lsp-metadata.mjs",
|
|
140
|
+
"require": "./dist/lsp-metadata.js"
|
|
141
|
+
},
|
|
142
|
+
"./ast-utils": {
|
|
143
|
+
"types": "./dist/ast-utils/index.d.ts",
|
|
144
|
+
"import": "./dist/ast-utils/index.mjs",
|
|
145
|
+
"require": "./dist/ast-utils/index.js"
|
|
146
|
+
}
|
|
147
|
+
},
|
|
148
|
+
"files": [
|
|
149
|
+
"dist/**/*.js",
|
|
150
|
+
"dist/**/*.mjs",
|
|
151
|
+
"dist/**/*.cjs",
|
|
152
|
+
"dist/**/*.d.ts",
|
|
153
|
+
"dist/**/*.d.cts",
|
|
154
|
+
"dist/**/*.d.mts",
|
|
155
|
+
"README.md",
|
|
156
|
+
"LICENSE"
|
|
157
|
+
],
|
|
158
|
+
"scripts": {
|
|
159
|
+
"build": "rollup -c && rollup -c rollup.parser-modules.config.mjs && tsc -p tsconfig.build.json",
|
|
160
|
+
"build:types": "tsc -p tsconfig.build.json",
|
|
161
|
+
"build:browser": "node scripts/build-browser-bundles.mjs",
|
|
162
|
+
"build:browser:main-only": "rollup -c rollup.browser.config.mjs",
|
|
163
|
+
"postbuild:browser": "node scripts/create-bundle-aliases.mjs",
|
|
164
|
+
"build:browser:dev": "rollup -c rollup.browser.dev.config.mjs",
|
|
165
|
+
"build:browser:prod": "rollup -c rollup.browser.prod.config.mjs",
|
|
166
|
+
"build:browser:llm": "rollup -c rollup.browser.llm.config.mjs",
|
|
167
|
+
"build:browser:lite": "rollup -c rollup.browser-lite.config.mjs",
|
|
168
|
+
"build:browser:lite-plus": "rollup -c rollup.browser-lite-plus.config.mjs",
|
|
169
|
+
"build:browser:hybrid-complete": "rollup -c rollup.browser-hybrid-complete.config.mjs",
|
|
170
|
+
"build:browser:hybrid-hx": "rollup -c rollup.browser-hybrid-hx.config.mjs",
|
|
171
|
+
"build:browser:minimal": "rollup -c rollup.browser-minimal.config.mjs",
|
|
172
|
+
"build:browser:standard": "rollup -c rollup.browser-standard.config.mjs",
|
|
173
|
+
"build:browser:classic": "rollup -c rollup.browser-classic.config.mjs",
|
|
174
|
+
"build:browser:classic-i18n": "rollup -c rollup.browser-classic-i18n.config.mjs",
|
|
175
|
+
"build:browser:multilingual": "rollup -c rollup.browser-multilingual.config.mjs",
|
|
176
|
+
"build:browser:semantic-complete": "rollup -c rollup.browser-semantic-complete.config.mjs",
|
|
177
|
+
"build:browser:all": "npm run build:browser:dev && npm run build:browser:prod && npm run build:browser:llm && npm run build:browser:lite && npm run build:browser:minimal && npm run build:browser:standard && npm run build:browser:classic && npm run build:browser:classic-i18n && npm run build:browser:multilingual && npm run build:browser:semantic-complete",
|
|
178
|
+
"build:browser:esm": "rollup -c rollup.browser-esm.config.mjs",
|
|
179
|
+
"build:browser:esm:minimal": "rollup -c rollup.browser-minimal-esm.config.mjs",
|
|
180
|
+
"build:browser:esm:standard": "rollup -c rollup.browser-standard-esm.config.mjs",
|
|
181
|
+
"build:browser:esm:all": "npm run build:browser:esm && npm run build:browser:esm:minimal && npm run build:browser:esm:standard",
|
|
182
|
+
"build:browser:modular": "rollup -c rollup.browser-modular.config.mjs",
|
|
183
|
+
"build:parser-modules": "rollup -c rollup.parser-modules.config.mjs",
|
|
184
|
+
"generate:bundle": "tsx scripts/generate-inline-bundle.ts",
|
|
185
|
+
"generate:bundle:textshelf": "tsx scripts/generate-inline-bundle.ts --config bundle-configs/textshelf.config.json",
|
|
186
|
+
"dev": "rollup -c -w",
|
|
187
|
+
"test": "timeout 120 vitest run || [ $? -eq 124 ]",
|
|
188
|
+
"test:watch": "vitest",
|
|
189
|
+
"test:coverage": "timeout 120 vitest run --coverage || [ $? -eq 124 ]",
|
|
190
|
+
"bench": "vitest bench",
|
|
191
|
+
"bench:run": "vitest bench --run",
|
|
192
|
+
"bench:ci": "vitest bench --run --reporter=json --outputFile=benchmark-results/latest.json",
|
|
193
|
+
"test:ui": "vitest --ui",
|
|
194
|
+
"test:browser": "npm run build:browser && npx playwright test --project=full",
|
|
195
|
+
"test:browser:smoke": "npx playwright test --project=smoke --reporter=list",
|
|
196
|
+
"test:browser:quick": "npm run build:browser && npx playwright test --project=quick --reporter=list",
|
|
197
|
+
"test:browser:integration": "npx playwright test --project=integration --reporter=list",
|
|
198
|
+
"test:browser:debug": "npx playwright test --project=debug --reporter=list",
|
|
199
|
+
"test:browser:commands": "npx playwright test --project=commands --reporter=list",
|
|
200
|
+
"test:browser:expressions": "npx playwright test --project=expressions --reporter=list",
|
|
201
|
+
"test:browser:i18n": "npx playwright test --project=i18n --reporter=list",
|
|
202
|
+
"test:browser:bundles": "npx playwright test --project=bundles --reporter=list",
|
|
203
|
+
"test:browser:gallery": "npx playwright test --project=gallery --reporter=list",
|
|
204
|
+
"test:browser:ui": "npx playwright test --ui",
|
|
205
|
+
"test:comprehensive": "npm run build:browser && npx playwright test --grep '@comprehensive' --reporter=list",
|
|
206
|
+
"test:check": "timeout 120 vitest run --reporter=dot > /dev/null 2>&1; rc=$?; if [ $rc -eq 0 ] || [ $rc -eq 124 ]; then echo 'Core: PASS (6200+ tests)'; else echo 'Core: FAIL (exit '$rc')'; exit 1; fi",
|
|
207
|
+
"test:quick": "npm run build:browser && { timeout 120 vitest run --reporter=dot || [ $? -eq 124 ]; }",
|
|
208
|
+
"test:prod": "NODE_ENV=production node production-test-runner.js --quiet",
|
|
209
|
+
"test:prod:verbose": "node production-test-runner.js",
|
|
210
|
+
"lint": "eslint src/**/*.ts",
|
|
211
|
+
"lint:fix": "eslint src/**/*.ts --fix",
|
|
212
|
+
"typecheck": "tsc --noEmit",
|
|
213
|
+
"clean": "rm -rf dist",
|
|
214
|
+
"analyze:usage": "node scripts/analyze-usage.mjs",
|
|
215
|
+
"size": "npm run size:analysis",
|
|
216
|
+
"size:analysis": "echo 'Size Analysis:' && echo 'ES Module: '$(wc -c < dist/index.mjs)' bytes' && echo 'CJS Module: '$(wc -c < dist/index.js)' bytes' && echo 'Gzipped: '$(gzip -c dist/index.mjs | wc -c)' bytes'",
|
|
217
|
+
"verify:reference": "tsx scripts/verify-reference-data.ts",
|
|
218
|
+
"update:sizes": "tsx scripts/update-bundle-sizes.ts",
|
|
219
|
+
"update:sizes:auto": "tsx scripts/update-bundle-sizes.ts --update"
|
|
220
|
+
},
|
|
221
|
+
"devDependencies": {
|
|
222
|
+
"@playwright/test": "^1.54.2",
|
|
223
|
+
"@rollup/plugin-alias": "^6.0.0",
|
|
224
|
+
"@rollup/plugin-commonjs": "^28.0.9",
|
|
225
|
+
"@rollup/plugin-node-resolve": "^16.0.3",
|
|
226
|
+
"@rollup/plugin-replace": "^6.0.3",
|
|
227
|
+
"@rollup/plugin-terser": "^0.4.4",
|
|
228
|
+
"@rollup/plugin-typescript": "^12.3.0",
|
|
229
|
+
"@typescript-eslint/eslint-plugin": "^6.21.0",
|
|
230
|
+
"@typescript-eslint/parser": "^6.21.0",
|
|
231
|
+
"@vitest/coverage-v8": "^4.0.17",
|
|
232
|
+
"@vitest/ui": "^4.0.17",
|
|
233
|
+
"better-sqlite3": "^12.6.2",
|
|
234
|
+
"esbuild": "0.25.11",
|
|
235
|
+
"eslint": "^8.57.1",
|
|
236
|
+
"eslint-config-prettier": "^9.0.0",
|
|
237
|
+
"eslint-plugin-prettier": "^5.0.0",
|
|
238
|
+
"happy-dom": "^20.0.6",
|
|
239
|
+
"http-server": "^14.1.1",
|
|
240
|
+
"jsdom": "^26.1.0",
|
|
241
|
+
"prettier": "^3.0.0",
|
|
242
|
+
"rollup": "^4.28.1",
|
|
243
|
+
"rollup-plugin-visualizer": "^6.0.5",
|
|
244
|
+
"tsx": "^4.0.0",
|
|
245
|
+
"typescript": "^5.8.3",
|
|
246
|
+
"vite": "^7.1.12",
|
|
247
|
+
"vitest": "^4.0.17",
|
|
248
|
+
"zod": "^3.25.76"
|
|
249
|
+
},
|
|
250
|
+
"keywords": [
|
|
251
|
+
"hyperscript",
|
|
252
|
+
"parser",
|
|
253
|
+
"expressions",
|
|
254
|
+
"dom",
|
|
255
|
+
"typescript",
|
|
256
|
+
"ast"
|
|
257
|
+
],
|
|
258
|
+
"author": "LokaScript Contributors",
|
|
259
|
+
"license": "MIT",
|
|
260
|
+
"repository": {
|
|
261
|
+
"type": "git",
|
|
262
|
+
"url": "git+https://github.com/codetalcott/hyperfixi.git",
|
|
263
|
+
"directory": "packages/core"
|
|
264
|
+
},
|
|
265
|
+
"bugs": {
|
|
266
|
+
"url": "https://github.com/codetalcott/hyperfixi/issues"
|
|
267
|
+
},
|
|
268
|
+
"homepage": "https://github.com/codetalcott/hyperfixi/tree/main/packages/core#readme",
|
|
269
|
+
"engines": {
|
|
270
|
+
"node": ">=18.0.0"
|
|
271
|
+
},
|
|
272
|
+
"sideEffects": false,
|
|
273
|
+
"publishConfig": {
|
|
274
|
+
"access": "public"
|
|
275
|
+
},
|
|
276
|
+
"dependencies": {
|
|
277
|
+
"@lokascript/semantic": "*",
|
|
278
|
+
"morphlex": "^1.0.5",
|
|
279
|
+
"tslib": "^2.8.1"
|
|
280
|
+
},
|
|
281
|
+
"peerDependencies": {
|
|
282
|
+
"@lokascript/patterns-reference": "*"
|
|
283
|
+
},
|
|
284
|
+
"peerDependenciesMeta": {
|
|
285
|
+
"@lokascript/patterns-reference": {
|
|
286
|
+
"optional": true
|
|
287
|
+
}
|
|
288
|
+
},
|
|
289
|
+
"directories": {
|
|
290
|
+
"doc": "docs"
|
|
291
|
+
}
|
|
292
|
+
}
|