Files
Umbraco-CMS/src/Umbraco.Web.UI.Client/package.json

300 lines
14 KiB
JSON
Raw Normal View History

2022-05-17 09:22:18 +02:00
{
"name": "@umbraco-cms/backoffice",
"license": "MIT",
2025-03-13 10:46:43 +01:00
"version": "15.4.0-rc",
"type": "module",
"exports": {
".": null,
2023-09-11 14:58:46 +02:00
"./app": "./dist-cms/apps/app/index.js",
2023-06-23 14:07:40 +02:00
"./class-api": "./dist-cms/libs/class-api/index.js",
"./context-api": "./dist-cms/libs/context-api/index.js",
"./controller-api": "./dist-cms/libs/controller-api/index.js",
"./element-api": "./dist-cms/libs/element-api/index.js",
2024-09-23 14:15:01 +02:00
"./embedded-media": "./dist-cms/packages/embedded-media/index.js",
"./extension-api": "./dist-cms/libs/extension-api/index.js",
"./extension-types": "./dist-cms/packages/extension-types/index.d.ts",
"./formatting-api": "./dist-cms/libs/formatting-api/index.js",
2023-07-25 13:50:48 +02:00
"./localization-api": "./dist-cms/libs/localization-api/index.js",
"./observable-api": "./dist-cms/libs/observable-api/index.js",
"./action": "./dist-cms/packages/core/action/index.js",
2024-04-30 14:02:58 +02:00
"./audit-log": "./dist-cms/packages/core/audit-log/index.js",
2024-02-23 14:18:05 +01:00
"./auth": "./dist-cms/packages/core/auth/index.js",
2024-09-13 11:14:33 +02:00
"./block-custom-view": "./dist-cms/packages/block/block-custom-view/index.js",
2024-02-23 14:05:32 +01:00
"./block-grid": "./dist-cms/packages/block/block-grid/index.js",
2024-02-23 14:18:05 +01:00
"./block-list": "./dist-cms/packages/block/block-list/index.js",
2024-02-23 14:05:32 +01:00
"./block-rte": "./dist-cms/packages/block/block-rte/index.js",
2024-02-23 14:18:05 +01:00
"./block-type": "./dist-cms/packages/block/block-type/index.js",
"./block": "./dist-cms/packages/block/block/index.js",
Feature: Clipboard (#17820) * wip clipboard context + tests * clean up property action module + register copy action * split manifests * add clipboard module * import type * export type * mark all methods async * scaffold copy + paste property actions * scaffold workspace, collection, repo + data sources * remove references to language * register detail manifests * call repo when creating * load clipboard collection data * remove debugger * register clipboard item picker modal * return value from picker * accept native error * clean up data source * add tests for error states * make clipboard local storage manager * add clip entry entity type * create unique in scaffold * add clipboard entry item data * align naming * move around * name alignment * fix imports * fix missing entityType * clean up * use picker input context * remove unused context * Update clipboard.context.ts * map to item model * poc paste property action * register copy/paste as kinds * lint fix * add tests * rename test * add repository tests * register delete clipboard action + enable action dropdown outside of context menu * remove notifcation * export entity type * temp use repo instead of context * delete unused copy property action * make data source non breaking * Update vite.config.ts * add icons for clipboard copy, paste + entry * remove unused * return if there is no property value * add kind interfaces * pass entry type for copy and paste * register clipboard for block list * implement filter on entry type * delete unused context * remove references * rename data to value and don't force an array * make icons and single value * allow to add create and update dates for clipboard entries * use clipboard icon * add create and update dates * export constants * don't set as an array * reload picker content * add copy to clipboard button to block list entry * make picker element * allow to pick multiple * remove generic block list clipboard actions * Revert "remove generic block list clipboard actions" This reverts commit 6ea65a02ce6315a781b80d0ccf0da288df602a7d. * add get methods * wip construct block clipboard entry value * add method to get exposes + add jsdocs * add expose * remove todo + add jsdocs * move clipboard out of core package * add package files * load package again * render entry icon * render correct icon * remove clipboard from core vite.config * Update package-lock.json * wip copy/paste resolvers * allow multiple accepted entry types * move logic to resolvers * transforming clipboard block value to fit block list * wip copy/paste resolvers * clean up * remove unused * fix missing exports * fix tests * return clipboard entry unique from modal * Update block-list-entries.context.ts * clipboard feature: clipboard property value cloner (#17824) * restructure of property package * content data merge controller tests * deprecate meta from propertyValueResolver * temp work * temp * poc * rename to cloner * stached block value cloner work * block list implementation * correct property value implementation * RTE Block Property Value Cloner * Block Grid Value Cloner * update with comments * try out cloner * wip translators * Revert "delete unused context" This reverts commit ec31ae55aaa9e958b64c44019398e9af7cd61df4. * move translator + cloner logic to context * clean up * implement read from clipboard in block list property editor * remove debugger * values array * handle paste * Update types.ts * move files * Update clipboard-local-storage.manager.ts * set both create and update date when creating a clipboard entry * align naming * handle paste * clean up + wip block grid translators * updates types * add grid block copy translator * only allow paste translator to handle a single value * align copy and paste translators * remove debugger * move to folders * add block const * rename * add tests * Update index.ts * use correct type * add tests for UmbBlockListToBlockClipboardCopyTranslator * fix tests * add translator tests * add tests * organize * organize * clean up translator tests * align naming * remove unused button * only render copy property action if property has a value * use constants * copy single grid block * get block grid property value from clipboard entry * add clear method to extension registry + add js docs * Update index.ts * add tests for copy value resolver * add icon for clipboard * use clipboard icon in modal * add tests * remove unused setting * fix log * only create array once * filter for supported paste translators * use write method instead of duplicating the code * add condition config type * use config type * Update manifests.ts * add support for multi picker * move multiple look up logic to context * add js docs * add js docs * remove unused * remove unused * remove unused * implement paste translator filtering for block catalogue modal * temp color translator * adding a UmbPropertyValueDataPotentiallyWithEditorAlias * simplify observer * append user unique to local storage key * remove temp color picker clipboard implementations * more explicit extension type name * more renaming * type specifications * fix test and missing type * more types for test * renaming of paste translators * rename folder * rename value resolvers * correct variable name * wip tests for clipboard context * clean up tests correctly * add more tests for clipboard context * Update clipboard.context.test.ts * use after each for clean up * fix test that times out * correct name * optimize * remove webkit * newest first when picking * use fingerprint local storage key to obfuscate user id * rename method * use const * set content max length * return object including the selection uniques * show confirm dialog before pasting value * only show confirm dialog if there is a value * Feature: clipboard block insert (#17935) * insert methods * fix originData * move logic to base class * progress on Grid and RTE * correct for Block Grid paste implementation * update async across * remove expose from block clipboard entry model * remove expose from grid block clipboard entry * remove todo * wip move value expand responsibility * wip split clipboard context * experiment with an extendable property context * create propertyContexts + proxy events * rename methods * move proxy to context + update grid copy logic * split tests * remove unused * add property context extension type * fix tests * fix tests * reorganize * Update clipboard.property-context.ts * use context * register property context clipboard kind * register for block grid * remove redundant code * rename to replace * Revert "rename to replace" This reverts commit eb0535edcfaa9f68d0fc4c431c93739a43c7b29c. * rename prop * rename label * improve block clean-up abilities * Update rte-base.element.ts * make local get of clipboard context * add asyncFilter option to the type * add is compatible method to the interface * support asyncFilter in picker * add compatability check for block list * more explicit name * wip implementation of filter * add compatability checks * add temp types * add clipboard filtering for grid and list * lint corrections --------- Co-authored-by: Niels Lyngsø <nsl@umbraco.dk> Co-authored-by: Niels Lyngsø <niels.lyngso@gmail.com>
2025-01-16 15:50:09 +01:00
"./clipboard": "./dist-cms/packages/clipboard/index.js",
"./code-editor": "./dist-cms/packages/code-editor/index.js",
"./collection": "./dist-cms/packages/core/collection/index.js",
"./components": "./dist-cms/packages/core/components/index.js",
2024-12-07 19:45:38 +01:00
"./const": "./dist-cms/packages/core/const/index.js",
"./content-type": "./dist-cms/packages/core/content-type/index.js",
2024-07-04 11:12:22 +02:00
"./content": "./dist-cms/packages/core/content/index.js",
2023-09-11 15:00:09 +02:00
"./culture": "./dist-cms/packages/core/culture/index.js",
2024-02-23 13:47:14 +01:00
"./current-user": "./dist-cms/packages/user/current-user/index.js",
2024-09-30 09:21:06 +02:00
"./dashboard": "./dist-cms/packages/core/dashboard/index.js",
2024-02-23 21:42:41 +01:00
"./data-type": "./dist-cms/packages/data-type/index.js",
"./debug": "./dist-cms/packages/core/debug/index.js",
2024-02-23 13:47:14 +01:00
"./dictionary": "./dist-cms/packages/dictionary/index.js",
"./document-blueprint": "./dist-cms/packages/documents/document-blueprints/index.js",
"./document-type": "./dist-cms/packages/documents/document-types/index.js",
"./document": "./dist-cms/packages/documents/documents/index.js",
V15: New dropzone component available for the Backoffice (#18753) * create a symlink between local Client .vscode snippets and global snippets for ease of use * fix: no need to specify `Element` in the snippet as that is pulled from the filename Because of our convention with `x.element.ts` you would have ended up with `UmbXElementElement` * feat: adds new component `umb-input-dropzone` * docs(storybook): more stories * feat: construct the temporary files centrally along with an `AbortController` and use its signal * feat: makes UmbInputDropzone form aware * feat: introduces a change event * chore: temporary changes before changing upload field * feat: adds default slot * docs: adds jsdocs * feat: adds more properties * feat: adds dashed styling * feat: adds multiple support * feat: allows to cancel file * feat: separate **cancel** and **remove** * fix stylibg * move dropzone element * move input-dropzone into dropzone package * feat: introduces a 'dropzone' package * import for backward compatibility * remove ambigious export * reexport everything from dropzone * fix import * cleanup test files * use correct import paths * test: make sure folder exists before writing to it * adds export for modals * adds entrypoint for dropzone package * use the AbortController directly on the temporary file object * uses correct icon name * feat: adds ability to remove all files and cancel the request * feat: adds styling for the uploader and enables it to work in multiple mode with classes over id's * do not let the content exceed its boundaries * feat: formats progress with 2 decimals * feat: formats with 0 decimals * fix: returns cancel error * fix: maps cancel errors back to the uploadable item * fix: do not proceed with media items if the request was cancelled * chore: mark exports from media <- dropzone as deprecated * fix: use correct attribute and remove a todo with localizations * fix: use correct attribute and remove a todo with localizations * fix: allow to specify parent through attribute * feat: align attribute `disableFolderUpload` between dropzone components
2025-03-24 14:17:48 +01:00
"./dropzone": "./dist-cms/packages/media/dropzone/index.js",
"./entity-action": "./dist-cms/packages/core/entity-action/index.js",
"./entity-bulk-action": "./dist-cms/packages/core/entity-bulk-action/index.js",
2024-10-30 19:02:53 +01:00
"./entity-create-option-action": "./dist-cms/packages/core/entity-create-option-action/index.js",
2024-07-04 11:12:22 +02:00
"./entity": "./dist-cms/packages/core/entity/index.js",
Feature: Bulk Delete/Trash referenced by (#18393) * add trash confirm modal * make referenceRepo optional + adjust styling * add referenceRepository to media trash action * wip entity-item-ref extension point * clean up * add ref list element * fix styling * Update document-item-ref.element.ts * move item repo * implement for input member * enable action slot * add null check * fix sorting again * fix sorting again * use member element * add draft styling back * move item repository * implement for user input * pass readonly and standalone props * make editPath a state * Update member-item-ref.element.ts * Fix user item ref * remove open button * remove unused * remove unused * check for section permission * add null check * change to use entity-item-ref element * register media item ref * add fallback element * show 3 references * wip data mapper concept * add unique to modal route registration * add unique to modal router * remove unused id * Update member-item-ref.element.ts * append unique * compare with old value * only recreate the controller if the entity type changes * fix console warning * implement for document item ref * Added $type to ReferenceResponseModels * move logic to item data resolver * render draft as a tag * Update document-item-ref.element.ts * generate server models * add more helpers to data resolver * export resolver * add observables * use observables in document item ref * add data resolver to tree item * add observable state * use const * align models * get icon from document type object * observe name and state * update observed value when a new item is set * update method name * update method names * pass model type * pass context type * use api prop instead of context * use api prop instead of context * fix types * use addUniquePaths for modal registration * add fallback * use ref list * use reference items for media * make mapper name more generic * make default ref item always readonly * export types * temp fake variants array * add variants array to model * Update media-references-workspace-info-app.element.ts * add variants to model * hardcode fake array * register media ref item * update mock data * dot not allow conditions for data mappers * add data mapper * prefix info routes * prefix all ref routes * return undefined if there is not edit path * add types for reference data source + repository * split trash with relation into its own action * render descendants with references * fix length check * set standalone attribute * implement for media * move trash * wip delete with relation * move to element * fix name collision * require data source identifier * use management api mapper * add management api mapper * fix type errors * Update index.ts * align naming * show references when deleting a document * Update delete-with-relation-modal.element.ts * use deleteWithRelation kind for media * clean up * localize trash * fix type * Update trash-with-relation.action.ts * override confirm methods in trash and delete actions * Update index.ts * export constants * Limit referenced-by document and media endpoints to references only. * Update document-reference-table.element.ts * add methods to get bulk references for documents * wip bulk trash * add todo comment * implement path pattern for media item * clean up * more clean up * sort imports * member edit path pattern * clean up * remove unused variant id * export extension types * wip bulk trash with relation * debounce incoming events * look up items + notify * add todo * temp solution to make it non breaking * add bulk delete * better description * implement methods for are referenced * change to use bulk trash with relation * implement delete with relation kind * deprecation warnings * move files * move files * export const * use correct kind * align naming * upper case Trash * correct uui-text impl * add comment about the v2 name * fix circular depdendencies * rename const * split to module * import global components * more explicit naming --------- Co-authored-by: Sven Geusens <sge@umbraco.dk> Co-authored-by: Andy Butland <abutland73@gmail.com> Co-authored-by: Niels Lyngsø <niels.lyngso@gmail.com>
2025-02-24 14:03:26 +01:00
"./entity-item": "./dist-cms/packages/core/entity-item/index.js",
2024-02-23 13:47:14 +01:00
"./event": "./dist-cms/packages/core/event/index.js",
"./extension-registry": "./dist-cms/packages/core/extension-registry/index.js",
2024-09-30 09:50:30 +02:00
"./health-check": "./dist-cms/packages/health-check/index.js",
2024-09-11 12:19:56 +02:00
"./help": "./dist-cms/packages/help/index.js",
2024-02-23 14:36:23 +01:00
"./icon": "./dist-cms/packages/core/icon-registry/index.js",
"./id": "./dist-cms/packages/core/id/index.js",
2024-05-23 19:09:47 +02:00
"./imaging": "./dist-cms/packages/media/imaging/index.js",
2024-02-23 13:47:14 +01:00
"./language": "./dist-cms/packages/language/index.js",
"./lit-element": "./dist-cms/packages/core/lit-element/index.js",
"./localization": "./dist-cms/packages/core/localization/index.js",
2024-02-23 13:47:14 +01:00
"./log-viewer": "./dist-cms/packages/log-viewer/index.js",
2024-03-04 11:50:51 +01:00
"./markdown-editor": "./dist-cms/packages/markdown-editor/index.js",
2024-02-23 13:47:14 +01:00
"./media-type": "./dist-cms/packages/media/media-types/index.js",
"./media": "./dist-cms/packages/media/media/index.js",
"./member-group": "./dist-cms/packages/members/member-group/index.js",
"./member-type": "./dist-cms/packages/members/member-type/index.js",
"./member": "./dist-cms/packages/members/member/index.js",
"./menu": "./dist-cms/packages/core/menu/index.js",
"./modal": "./dist-cms/packages/core/modal/index.js",
2024-02-23 14:36:23 +01:00
"./models": "./dist-cms/packages/core/models/index.js",
2024-07-09 10:31:21 +02:00
"./multi-url-picker": "./dist-cms/packages/multi-url-picker/index.js",
"./notification": "./dist-cms/packages/core/notification/index.js",
2024-08-12 09:38:39 +02:00
"./object-type": "./dist-cms/packages/core/object-type/index.js",
2024-02-23 13:47:14 +01:00
"./package": "./dist-cms/packages/packages/package/index.js",
"./partial-view": "./dist-cms/packages/templating/partial-views/index.js",
"./picker-input": "./dist-cms/packages/core/picker-input/index.js",
2024-10-01 13:19:32 +02:00
"./picker": "./dist-cms/packages/core/picker/index.js",
2023-06-29 14:38:48 +02:00
"./property-action": "./dist-cms/packages/core/property-action/index.js",
2023-06-27 12:41:56 +02:00
"./property-editor": "./dist-cms/packages/core/property-editor/index.js",
2024-07-04 11:12:22 +02:00
"./property-type": "./dist-cms/packages/core/property-type/index.js",
2024-02-23 13:47:14 +01:00
"./property": "./dist-cms/packages/core/property/index.js",
2024-04-03 08:53:39 +02:00
"./recycle-bin": "./dist-cms/packages/core/recycle-bin/index.js",
2024-01-04 16:49:57 +13:00
"./relation-type": "./dist-cms/packages/relations/relation-types/index.js",
"./relations": "./dist-cms/packages/relations/relations/index.js",
2024-02-23 13:47:14 +01:00
"./repository": "./dist-cms/packages/core/repository/index.js",
2024-02-23 14:37:41 +01:00
"./resources": "./dist-cms/packages/core/resources/index.js",
2024-02-23 14:36:23 +01:00
"./router": "./dist-cms/packages/core/router/index.js",
2024-10-01 13:19:32 +02:00
"./rte": "./dist-cms/packages/rte/index.js",
2024-06-05 12:16:36 +02:00
"./script": "./dist-cms/packages/templating/scripts/index.js",
2024-04-11 12:44:54 +02:00
"./search": "./dist-cms/packages/search/index.js",
2024-02-23 13:47:14 +01:00
"./section": "./dist-cms/packages/core/section/index.js",
"./server-file-system": "./dist-cms/packages/core/server-file-system/index.js",
2024-07-04 11:12:22 +02:00
"./settings": "./dist-cms/packages/settings/index.js",
2024-02-23 13:47:14 +01:00
"./sorter": "./dist-cms/packages/core/sorter/index.js",
2023-12-13 14:16:43 +01:00
"./static-file": "./dist-cms/packages/static-file/index.js",
2024-02-23 13:47:14 +01:00
"./store": "./dist-cms/packages/core/store/index.js",
2024-02-23 14:36:23 +01:00
"./style": "./dist-cms/packages/core/style/index.js",
"./stylesheet": "./dist-cms/packages/templating/stylesheets/index.js",
2024-09-09 17:52:00 +02:00
"./sysinfo": "./dist-cms/packages/sysinfo/index.js",
2024-02-23 13:47:14 +01:00
"./tags": "./dist-cms/packages/tags/index.js",
"./template": "./dist-cms/packages/templating/templates/index.js",
2024-02-23 13:47:14 +01:00
"./temporary-file": "./dist-cms/packages/core/temporary-file/index.js",
"./themes": "./dist-cms/packages/core/themes/index.js",
2024-10-01 13:19:32 +02:00
"./tiny-mce": "./dist-cms/packages/tiny-mce/index.js",
"./tiptap": "./dist-cms/packages/tiptap/index.js",
"./translation": "./dist-cms/packages/translation/index.js",
2024-02-23 13:47:14 +01:00
"./tree": "./dist-cms/packages/core/tree/index.js",
2024-05-23 09:12:38 +01:00
"./ufm": "./dist-cms/packages/ufm/index.js",
2024-09-23 19:55:49 +02:00
"./user-change-password": "./dist-cms/packages/user/change-password/index.js",
2023-10-10 09:27:44 +02:00
"./user-group": "./dist-cms/packages/user/user-group/index.js",
"./user-permission": "./dist-cms/packages/user/user-permission/index.js",
2024-02-23 13:47:14 +01:00
"./user": "./dist-cms/packages/user/user/index.js",
"./utils": "./dist-cms/packages/core/utils/index.js",
2024-03-21 20:30:02 +01:00
"./validation": "./dist-cms/packages/core/validation/index.js",
2024-02-23 13:47:14 +01:00
"./variant": "./dist-cms/packages/core/variant/index.js",
2024-02-29 13:37:25 +01:00
"./webhook": "./dist-cms/packages/webhook/index.js",
2024-02-23 13:47:14 +01:00
"./workspace": "./dist-cms/packages/core/workspace/index.js",
"./external/backend-api": "./dist-cms/external/backend-api/index.js",
"./external/base64-js": "./dist-cms/external/base64-js/index.js",
2024-04-08 14:46:53 +02:00
"./external/diff": "./dist-cms/external/diff/index.js",
"./external/dompurify": "./dist-cms/external/dompurify/index.js",
"./external/lit": "./dist-cms/external/lit/index.js",
"./external/marked": "./dist-cms/external/marked/index.js",
"./external/monaco-editor": "./dist-cms/external/monaco-editor/index.js",
"./external/openid": "./dist-cms/external/openid/index.js",
"./external/router-slot": "./dist-cms/external/router-slot/index.js",
"./external/rxjs": "./dist-cms/external/rxjs/index.js",
"./external/tinymce": "./dist-cms/external/tinymce/index.js",
2024-09-12 15:25:43 +02:00
"./external/tiptap": "./dist-cms/external/tiptap/index.js",
"./external/uui": "./dist-cms/external/uui/index.js",
2024-02-12 21:27:10 +01:00
"./external/uuid": "./dist-cms/external/uuid/index.js"
},
"files": [
"dist-cms",
"examples",
2023-09-13 14:33:32 +02:00
"README.md"
],
"repository": {
2024-11-29 15:36:28 +01:00
"url": "https://github.com/umbraco/Umbraco-CMS",
"type": "git"
},
"bugs": {
"url": "https://github.com/umbraco/Umbraco-CMS/issues"
},
"author": {
"name": "Umbraco A/S",
"email": "backoffice@umbraco.com",
"url": "https://umbraco.com"
},
"workspaces": [
"./src/packages/*"
],
"scripts": {
"backoffice:test:e2e": "npx playwright test",
2023-11-28 12:56:07 +01:00
"build-storybook": "npm run wc-analyze && storybook build",
"build:for:cms": "npm run build && npm run build:workspaces && npm run generate:manifest && npm run package:validate && node ./devops/build/copy-to-cms.js",
2024-07-03 11:56:56 +02:00
"build:for:npm": "npm run build -- --declaration && npm run generate:manifest && npm run package:validate",
2023-11-28 12:56:07 +01:00
"build:for:static": "vite build",
"build:vite": "tsc && vite build --mode staging",
"build:workspaces": "npm run build -ws --if-present",
2024-07-03 11:56:56 +02:00
"build": "tsc --project ./src/tsconfig.build.json",
"postbuild": "rollup -c ./src/rollup.config.js && node ./devops/build/global-types.js",
2023-11-28 12:56:07 +01:00
"check": "npm run lint:errors && npm run compile && npm run build-storybook && npm run generate:jsonschema:dist",
2024-07-04 17:03:45 +02:00
"check:paths": "node ./devops/build/check-path-length.js dist-cms 120",
"check:circular": "node ./devops/circular/index.js src",
2023-11-28 12:56:07 +01:00
"compile": "tsc",
"dev": "vite",
"dev:server": "cross-env VITE_UMBRACO_USE_MSW=off vite",
"dev:mock": "cross-env VITE_UMBRACO_USE_MSW=on vite",
2023-11-28 12:56:07 +01:00
"example": "node ./devops/example-runner/index.js",
"format:fix": "npm run format -- --write",
2024-07-02 11:42:48 +02:00
"format": "prettier 'src/**/*.ts' --check",
"generate:server-api-dev": "openapi-ts --file devops/openapi-ts/openapi-ts.dev.config.js",
"generate:server-api": "openapi-ts --file devops/openapi-ts/openapi-ts.config.js",
"generate:icons": "node ./devops/icons/index.js",
2024-06-21 10:54:17 +02:00
"generate:overrides": "node ./devops/tsc/index.js",
"generate:jsonschema:imports": "node ./devops/json-schema-generator/index.js",
"generate:jsonschema:dist": "npm run generate:jsonschema -- --out dist-cms/umbraco-package-schema.json tsconfig.json UmbracoPackage",
"generate:jsonschema": "typescript-json-schema --skipLibCheck --ignoreErrors --excludePrivate --required --include \"./src/json-schema/umbraco-package-schema.ts\"",
"generate:check-const-test": "node ./devops/generate-check-const-test/index.js",
2023-11-28 12:56:07 +01:00
"lint:errors": "npm run lint -- --quiet",
"lint:fix": "npm run lint -- --fix",
"lint": "eslint src",
"prepack": "tsc-alias -f -p src/tsconfig.build.json && npm run generate:jsonschema:dist && npm run wc-analyze && npm run wc-analyze:vscode && node ./devops/publish/cleanse-pkg.js",
2023-11-28 12:56:07 +01:00
"preview": "vite preview --open",
"storybook:build": "npm run wc-analyze && storybook build",
"storybook:preview": "npm run wc-analyze && storybook build && npx serve storybook-static",
2023-11-28 12:56:07 +01:00
"storybook": "npm run wc-analyze && storybook dev -p 6006",
2024-04-05 15:28:39 +02:00
"test:e2e": "npm run backoffice:test:e2e",
"test:dev": "npm run generate:check-const-test && web-test-runner --config ./web-test-runner.dev.config.mjs",
"test:dev-watch": "npm run generate:check-const-test && web-test-runner --watch --config ./web-test-runner.dev.config.mjs",
"test:watch": "npm run generate:check-const-test && web-test-runner --watch",
"test": "npm run generate:check-const-test && web-test-runner",
2023-11-28 12:56:07 +01:00
"wc-analyze:vscode": "wca **/*.element.ts --format vscode --outFile dist-cms/vscode-html-custom-data.json",
"wc-analyze": "wca **/*.element.ts --outFile dist-cms/custom-elements.json",
2024-02-12 21:10:19 +01:00
"generate:tsconfig": "node ./devops/tsconfig/index.js",
2024-02-13 11:57:25 +01:00
"generate:manifest": "node ./devops/build/create-umbraco-package.js",
"package:validate": "node ./devops/package/validate-exports.js",
"generate:ui-api-docs": "npm run generate:check-const-test && typedoc --options typedoc.config.js"
},
"engines": {
"node": ">=22",
"npm": ">=10.9"
},
"dependencies": {
V15: Update Backoffice NPM dependencies (#18376) * build(deps-dev): update storybook from 8.4.7 to 8.5.6 * build(deps): update tiptap from 2.11.2 to 2.11.5 * build(deps-dev): update eslint stuff to latest * build(deps): update element-internals-polyfill from 1.3.12 to 1.3.13 * build(deps): update marked from 15.0.6 to 15.0.7 * build(deps-dev): update vite from 5.4.14 to 6.1.0 * build(deps-dev): update globals to 15.15.0 (eslint dependency) * build(deps): update icon libraries to latest * build(deps-dev): update prettier from 3.4.2 to 3.5.1 * chore: generate consts * build(deps-dev): update test-related libraries * feat: copy over code from the tiny base64-js library because it is not exported as esm and has not been updated in 4 years * build(deps-dev): remove dependency from base64-js * build(deps-dev): upgrade rollup dependencies * test: disable tests for tinyce * build(deps-dev): update @babel/core to 7.26.9 * build(deps): update storybook to latest * build(deps-dev): update types * build(deps-dev): update typedoc from 0.27.6 to 0.27.7 * build(deps-dev): update @rollup/plugin-commonjs to latest * build(deps): import tiny as default and re-export as module and default to make everyone happy (and avoid commonjs pitfalls) * build: remove dependency on commonjs to build externals * build(deps-dev): uninstall @rollup/plugin-commonjs as it is no longer needed * test: reenable tinymce tests * fix: sets a default label this mistake was highlighted by the test runner * test: reenable tinymce tests * build: ignores autogenerated test file * build: adds github error logging to icon generator * build: log as error * build: adds tests for generate:* scripts * build: optimises icons with svgo to remove useless things like comments this also ensures that icons are unchanged when we upgrade icon library packages as they would normally include things like versions as comments in the files
2025-02-20 11:29:54 +01:00
"@tiptap/core": "2.11.5",
"@tiptap/extension-character-count": "^2.11.5",
V15: Update Backoffice NPM dependencies (#18376) * build(deps-dev): update storybook from 8.4.7 to 8.5.6 * build(deps): update tiptap from 2.11.2 to 2.11.5 * build(deps-dev): update eslint stuff to latest * build(deps): update element-internals-polyfill from 1.3.12 to 1.3.13 * build(deps): update marked from 15.0.6 to 15.0.7 * build(deps-dev): update vite from 5.4.14 to 6.1.0 * build(deps-dev): update globals to 15.15.0 (eslint dependency) * build(deps): update icon libraries to latest * build(deps-dev): update prettier from 3.4.2 to 3.5.1 * chore: generate consts * build(deps-dev): update test-related libraries * feat: copy over code from the tiny base64-js library because it is not exported as esm and has not been updated in 4 years * build(deps-dev): remove dependency from base64-js * build(deps-dev): upgrade rollup dependencies * test: disable tests for tinyce * build(deps-dev): update @babel/core to 7.26.9 * build(deps): update storybook to latest * build(deps-dev): update types * build(deps-dev): update typedoc from 0.27.6 to 0.27.7 * build(deps-dev): update @rollup/plugin-commonjs to latest * build(deps): import tiny as default and re-export as module and default to make everyone happy (and avoid commonjs pitfalls) * build: remove dependency on commonjs to build externals * build(deps-dev): uninstall @rollup/plugin-commonjs as it is no longer needed * test: reenable tinymce tests * fix: sets a default label this mistake was highlighted by the test runner * test: reenable tinymce tests * build: ignores autogenerated test file * build: adds github error logging to icon generator * build: log as error * build: adds tests for generate:* scripts * build: optimises icons with svgo to remove useless things like comments this also ensures that icons are unchanged when we upgrade icon library packages as they would normally include things like versions as comments in the files
2025-02-20 11:29:54 +01:00
"@tiptap/extension-image": "2.11.5",
"@tiptap/extension-link": "2.11.5",
"@tiptap/extension-placeholder": "2.11.5",
"@tiptap/extension-subscript": "2.11.5",
"@tiptap/extension-superscript": "2.11.5",
"@tiptap/extension-table": "2.11.5",
"@tiptap/extension-table-cell": "2.11.5",
"@tiptap/extension-table-header": "2.11.5",
"@tiptap/extension-table-row": "2.11.5",
"@tiptap/extension-text-align": "2.11.5",
"@tiptap/extension-underline": "2.11.5",
"@tiptap/pm": "2.11.5",
"@tiptap/starter-kit": "2.11.5",
"@types/diff": "^7.0.1",
"@umbraco-ui/uui": "1.13.0-rc.2",
"@umbraco-ui/uui-css": "1.13.0-rc.2",
V15: npm updates 2024-11-15 (#17545) * build(deps): bump storybook from 8.3.5 to 8.4.4 * reenable public folder (with msw file) for storybook * build(deps-dev): bump vite from 5.4.6 to 5.4.11 * build(deps-dev): bump babel and rollup * build(deps-dev): bump typedoc from 0.26.5 to 0.26.11 * build(deps-dev): bump @hey-api/openapi-ts from 0.52.11 to 0.55.3 regenerated all models and migrated the config * build(deps-dev): bump eslint from 9.7.0 to 9.14.0 including related deps * build(deps-dev): bump all @types packages * build(deps-dev): bump lucide to 0.459.0 and simple-icons to 13.16.0 regenerate icons: - renamed `box-select` to `square-dashed` * build(deps): bump marked from 14.1.0 to 15.0.0 * build(deps): bump monaco-editor from 0.50.0 to 0.52.0 * build(deps): bump dumpurify from 3.1.6 to 3.2.0 * build(deps): make changes based on the dompurify upgrade where types are now an inherent part of the package * build(deps): bump diff from 5.2.0 to 7.0.0 * build(deps): bump element-internals-polyfill from 1.3.11 to 1.3.12 * build(deps): bump lit from 3.2.0 to 3.2.1 * build(deps-dev): bump globals from 15.8.0 to 15.12.0 (eslint dependency) * build(deps-dev): bump storybook dependencies * build(deps-dev): bump @web/dev-server deps * build(deps-dev): bump typescript from 5.5.3 to 5.6.3 * build(deps): bump uuid from 10.0.0 to 11.0.3 thereby eliminating the @types/uuid module * build(deps): bump tinymce-i18n from 24.7.15 to 24.11.11 * build(deps): bump all deps to latest and use backoffice global types for extension manifests * chore: change import path * build(deps-dev): bump rollup/plugin-commonjs to 26.0.3 for compatibility reasons * feat: replace outdated 'webworker-loader' with manual paths to monaco's web workers since they are esmodules anyway * build(deps-dev): bump storybook from 8.4.4 to 8.4.5 * build(deps): bump tiptap from 2.9.1 to 2.10.2 * build(deps): bump dompurify from 3.2.0 to 3.2.1 * build(deps): bump tinymce-i18n from 24.11.11 to 24.11.25 * build(deps): bump static icons * build(deps): bump marked from 15.0.0 to 15.0.2 * build(deps-dev): bump eslint + deps * build(deps-dev): bump vite + rollup dependencies * build(deps-dev): bump @playwright/test from 1.48.2 to 1.49.0 * build(deps-dev): bump @hey-api/openapi-ts from 0.55.3 to 0.57.1 generated new services * build(deps-dev): bump @types/mocha * build(deps): bump typescript from 5.6.3 to 5.7.2
2024-11-25 17:47:13 +01:00
"diff": "^7.0.0",
"dompurify": "^3.2.4",
V15: Update Backoffice NPM dependencies (#18376) * build(deps-dev): update storybook from 8.4.7 to 8.5.6 * build(deps): update tiptap from 2.11.2 to 2.11.5 * build(deps-dev): update eslint stuff to latest * build(deps): update element-internals-polyfill from 1.3.12 to 1.3.13 * build(deps): update marked from 15.0.6 to 15.0.7 * build(deps-dev): update vite from 5.4.14 to 6.1.0 * build(deps-dev): update globals to 15.15.0 (eslint dependency) * build(deps): update icon libraries to latest * build(deps-dev): update prettier from 3.4.2 to 3.5.1 * chore: generate consts * build(deps-dev): update test-related libraries * feat: copy over code from the tiny base64-js library because it is not exported as esm and has not been updated in 4 years * build(deps-dev): remove dependency from base64-js * build(deps-dev): upgrade rollup dependencies * test: disable tests for tinyce * build(deps-dev): update @babel/core to 7.26.9 * build(deps): update storybook to latest * build(deps-dev): update types * build(deps-dev): update typedoc from 0.27.6 to 0.27.7 * build(deps-dev): update @rollup/plugin-commonjs to latest * build(deps): import tiny as default and re-export as module and default to make everyone happy (and avoid commonjs pitfalls) * build: remove dependency on commonjs to build externals * build(deps-dev): uninstall @rollup/plugin-commonjs as it is no longer needed * test: reenable tinymce tests * fix: sets a default label this mistake was highlighted by the test runner * test: reenable tinymce tests * build: ignores autogenerated test file * build: adds github error logging to icon generator * build: log as error * build: adds tests for generate:* scripts * build: optimises icons with svgo to remove useless things like comments this also ensures that icons are unchanged when we upgrade icon library packages as they would normally include things like versions as comments in the files
2025-02-20 11:29:54 +01:00
"element-internals-polyfill": "^1.3.13",
V15: npm updates 2024-11-15 (#17545) * build(deps): bump storybook from 8.3.5 to 8.4.4 * reenable public folder (with msw file) for storybook * build(deps-dev): bump vite from 5.4.6 to 5.4.11 * build(deps-dev): bump babel and rollup * build(deps-dev): bump typedoc from 0.26.5 to 0.26.11 * build(deps-dev): bump @hey-api/openapi-ts from 0.52.11 to 0.55.3 regenerated all models and migrated the config * build(deps-dev): bump eslint from 9.7.0 to 9.14.0 including related deps * build(deps-dev): bump all @types packages * build(deps-dev): bump lucide to 0.459.0 and simple-icons to 13.16.0 regenerate icons: - renamed `box-select` to `square-dashed` * build(deps): bump marked from 14.1.0 to 15.0.0 * build(deps): bump monaco-editor from 0.50.0 to 0.52.0 * build(deps): bump dumpurify from 3.1.6 to 3.2.0 * build(deps): make changes based on the dompurify upgrade where types are now an inherent part of the package * build(deps): bump diff from 5.2.0 to 7.0.0 * build(deps): bump element-internals-polyfill from 1.3.11 to 1.3.12 * build(deps): bump lit from 3.2.0 to 3.2.1 * build(deps-dev): bump globals from 15.8.0 to 15.12.0 (eslint dependency) * build(deps-dev): bump storybook dependencies * build(deps-dev): bump @web/dev-server deps * build(deps-dev): bump typescript from 5.5.3 to 5.6.3 * build(deps): bump uuid from 10.0.0 to 11.0.3 thereby eliminating the @types/uuid module * build(deps): bump tinymce-i18n from 24.7.15 to 24.11.11 * build(deps): bump all deps to latest and use backoffice global types for extension manifests * chore: change import path * build(deps-dev): bump rollup/plugin-commonjs to 26.0.3 for compatibility reasons * feat: replace outdated 'webworker-loader' with manual paths to monaco's web workers since they are esmodules anyway * build(deps-dev): bump storybook from 8.4.4 to 8.4.5 * build(deps): bump tiptap from 2.9.1 to 2.10.2 * build(deps): bump dompurify from 3.2.0 to 3.2.1 * build(deps): bump tinymce-i18n from 24.11.11 to 24.11.25 * build(deps): bump static icons * build(deps): bump marked from 15.0.0 to 15.0.2 * build(deps-dev): bump eslint + deps * build(deps-dev): bump vite + rollup dependencies * build(deps-dev): bump @playwright/test from 1.48.2 to 1.49.0 * build(deps-dev): bump @hey-api/openapi-ts from 0.55.3 to 0.57.1 generated new services * build(deps-dev): bump @types/mocha * build(deps): bump typescript from 5.6.3 to 5.7.2
2024-11-25 17:47:13 +01:00
"lit": "^3.2.1",
V15: Update Backoffice NPM dependencies (#18376) * build(deps-dev): update storybook from 8.4.7 to 8.5.6 * build(deps): update tiptap from 2.11.2 to 2.11.5 * build(deps-dev): update eslint stuff to latest * build(deps): update element-internals-polyfill from 1.3.12 to 1.3.13 * build(deps): update marked from 15.0.6 to 15.0.7 * build(deps-dev): update vite from 5.4.14 to 6.1.0 * build(deps-dev): update globals to 15.15.0 (eslint dependency) * build(deps): update icon libraries to latest * build(deps-dev): update prettier from 3.4.2 to 3.5.1 * chore: generate consts * build(deps-dev): update test-related libraries * feat: copy over code from the tiny base64-js library because it is not exported as esm and has not been updated in 4 years * build(deps-dev): remove dependency from base64-js * build(deps-dev): upgrade rollup dependencies * test: disable tests for tinyce * build(deps-dev): update @babel/core to 7.26.9 * build(deps): update storybook to latest * build(deps-dev): update types * build(deps-dev): update typedoc from 0.27.6 to 0.27.7 * build(deps-dev): update @rollup/plugin-commonjs to latest * build(deps): import tiny as default and re-export as module and default to make everyone happy (and avoid commonjs pitfalls) * build: remove dependency on commonjs to build externals * build(deps-dev): uninstall @rollup/plugin-commonjs as it is no longer needed * test: reenable tinymce tests * fix: sets a default label this mistake was highlighted by the test runner * test: reenable tinymce tests * build: ignores autogenerated test file * build: adds github error logging to icon generator * build: log as error * build: adds tests for generate:* scripts * build: optimises icons with svgo to remove useless things like comments this also ensures that icons are unchanged when we upgrade icon library packages as they would normally include things like versions as comments in the files
2025-02-20 11:29:54 +01:00
"marked": "^15.0.7",
"monaco-editor": "^0.52.2",
2023-07-18 09:47:16 +02:00
"rxjs": "^7.8.1",
"tinymce": "^6.8.5",
"tinymce-i18n": "^24.12.30",
"uuid": "^11.0.5"
},
"devDependencies": {
V15: Update Backoffice NPM dependencies (#18376) * build(deps-dev): update storybook from 8.4.7 to 8.5.6 * build(deps): update tiptap from 2.11.2 to 2.11.5 * build(deps-dev): update eslint stuff to latest * build(deps): update element-internals-polyfill from 1.3.12 to 1.3.13 * build(deps): update marked from 15.0.6 to 15.0.7 * build(deps-dev): update vite from 5.4.14 to 6.1.0 * build(deps-dev): update globals to 15.15.0 (eslint dependency) * build(deps): update icon libraries to latest * build(deps-dev): update prettier from 3.4.2 to 3.5.1 * chore: generate consts * build(deps-dev): update test-related libraries * feat: copy over code from the tiny base64-js library because it is not exported as esm and has not been updated in 4 years * build(deps-dev): remove dependency from base64-js * build(deps-dev): upgrade rollup dependencies * test: disable tests for tinyce * build(deps-dev): update @babel/core to 7.26.9 * build(deps): update storybook to latest * build(deps-dev): update types * build(deps-dev): update typedoc from 0.27.6 to 0.27.7 * build(deps-dev): update @rollup/plugin-commonjs to latest * build(deps): import tiny as default and re-export as module and default to make everyone happy (and avoid commonjs pitfalls) * build: remove dependency on commonjs to build externals * build(deps-dev): uninstall @rollup/plugin-commonjs as it is no longer needed * test: reenable tinymce tests * fix: sets a default label this mistake was highlighted by the test runner * test: reenable tinymce tests * build: ignores autogenerated test file * build: adds github error logging to icon generator * build: log as error * build: adds tests for generate:* scripts * build: optimises icons with svgo to remove useless things like comments this also ensures that icons are unchanged when we upgrade icon library packages as they would normally include things like versions as comments in the files
2025-02-20 11:29:54 +01:00
"@babel/core": "^7.26.9",
"@eslint/js": "^9.20.0",
"@hey-api/openapi-ts": "^0.61.3",
2024-01-15 13:27:34 +01:00
"@open-wc/testing": "^4.0.0",
"@playwright/test": "^1.49.1",
"@rollup/plugin-json": "^6.1.0",
V15: Update Backoffice NPM dependencies (#18376) * build(deps-dev): update storybook from 8.4.7 to 8.5.6 * build(deps): update tiptap from 2.11.2 to 2.11.5 * build(deps-dev): update eslint stuff to latest * build(deps): update element-internals-polyfill from 1.3.12 to 1.3.13 * build(deps): update marked from 15.0.6 to 15.0.7 * build(deps-dev): update vite from 5.4.14 to 6.1.0 * build(deps-dev): update globals to 15.15.0 (eslint dependency) * build(deps): update icon libraries to latest * build(deps-dev): update prettier from 3.4.2 to 3.5.1 * chore: generate consts * build(deps-dev): update test-related libraries * feat: copy over code from the tiny base64-js library because it is not exported as esm and has not been updated in 4 years * build(deps-dev): remove dependency from base64-js * build(deps-dev): upgrade rollup dependencies * test: disable tests for tinyce * build(deps-dev): update @babel/core to 7.26.9 * build(deps): update storybook to latest * build(deps-dev): update types * build(deps-dev): update typedoc from 0.27.6 to 0.27.7 * build(deps-dev): update @rollup/plugin-commonjs to latest * build(deps): import tiny as default and re-export as module and default to make everyone happy (and avoid commonjs pitfalls) * build: remove dependency on commonjs to build externals * build(deps-dev): uninstall @rollup/plugin-commonjs as it is no longer needed * test: reenable tinymce tests * fix: sets a default label this mistake was highlighted by the test runner * test: reenable tinymce tests * build: ignores autogenerated test file * build: adds github error logging to icon generator * build: log as error * build: adds tests for generate:* scripts * build: optimises icons with svgo to remove useless things like comments this also ensures that icons are unchanged when we upgrade icon library packages as they would normally include things like versions as comments in the files
2025-02-20 11:29:54 +01:00
"@rollup/plugin-node-resolve": "^16.0.0",
"@rollup/plugin-replace": "^6.0.2",
"@storybook/addon-a11y": "^8.6.7",
"@storybook/addon-actions": "^8.6.7",
"@storybook/addon-essentials": "^8.6.7",
"@storybook/addon-links": "^8.6.7",
"@storybook/manager-api": "^8.6.7",
"@storybook/web-components": "^8.6.7",
"@storybook/web-components-vite": "^8.6.7",
V15: npm updates 2024-11-15 (#17545) * build(deps): bump storybook from 8.3.5 to 8.4.4 * reenable public folder (with msw file) for storybook * build(deps-dev): bump vite from 5.4.6 to 5.4.11 * build(deps-dev): bump babel and rollup * build(deps-dev): bump typedoc from 0.26.5 to 0.26.11 * build(deps-dev): bump @hey-api/openapi-ts from 0.52.11 to 0.55.3 regenerated all models and migrated the config * build(deps-dev): bump eslint from 9.7.0 to 9.14.0 including related deps * build(deps-dev): bump all @types packages * build(deps-dev): bump lucide to 0.459.0 and simple-icons to 13.16.0 regenerate icons: - renamed `box-select` to `square-dashed` * build(deps): bump marked from 14.1.0 to 15.0.0 * build(deps): bump monaco-editor from 0.50.0 to 0.52.0 * build(deps): bump dumpurify from 3.1.6 to 3.2.0 * build(deps): make changes based on the dompurify upgrade where types are now an inherent part of the package * build(deps): bump diff from 5.2.0 to 7.0.0 * build(deps): bump element-internals-polyfill from 1.3.11 to 1.3.12 * build(deps): bump lit from 3.2.0 to 3.2.1 * build(deps-dev): bump globals from 15.8.0 to 15.12.0 (eslint dependency) * build(deps-dev): bump storybook dependencies * build(deps-dev): bump @web/dev-server deps * build(deps-dev): bump typescript from 5.5.3 to 5.6.3 * build(deps): bump uuid from 10.0.0 to 11.0.3 thereby eliminating the @types/uuid module * build(deps): bump tinymce-i18n from 24.7.15 to 24.11.11 * build(deps): bump all deps to latest and use backoffice global types for extension manifests * chore: change import path * build(deps-dev): bump rollup/plugin-commonjs to 26.0.3 for compatibility reasons * feat: replace outdated 'webworker-loader' with manual paths to monaco's web workers since they are esmodules anyway * build(deps-dev): bump storybook from 8.4.4 to 8.4.5 * build(deps): bump tiptap from 2.9.1 to 2.10.2 * build(deps): bump dompurify from 3.2.0 to 3.2.1 * build(deps): bump tinymce-i18n from 24.11.11 to 24.11.25 * build(deps): bump static icons * build(deps): bump marked from 15.0.0 to 15.0.2 * build(deps-dev): bump eslint + deps * build(deps-dev): bump vite + rollup dependencies * build(deps-dev): bump @playwright/test from 1.48.2 to 1.49.0 * build(deps-dev): bump @hey-api/openapi-ts from 0.55.3 to 0.57.1 generated new services * build(deps-dev): bump @types/mocha * build(deps): bump typescript from 5.6.3 to 5.7.2
2024-11-25 17:47:13 +01:00
"@types/chai": "^5.0.1",
2024-07-02 11:35:54 +02:00
"@types/eslint__js": "^8.42.3",
V15: npm updates 2024-11-15 (#17545) * build(deps): bump storybook from 8.3.5 to 8.4.4 * reenable public folder (with msw file) for storybook * build(deps-dev): bump vite from 5.4.6 to 5.4.11 * build(deps-dev): bump babel and rollup * build(deps-dev): bump typedoc from 0.26.5 to 0.26.11 * build(deps-dev): bump @hey-api/openapi-ts from 0.52.11 to 0.55.3 regenerated all models and migrated the config * build(deps-dev): bump eslint from 9.7.0 to 9.14.0 including related deps * build(deps-dev): bump all @types packages * build(deps-dev): bump lucide to 0.459.0 and simple-icons to 13.16.0 regenerate icons: - renamed `box-select` to `square-dashed` * build(deps): bump marked from 14.1.0 to 15.0.0 * build(deps): bump monaco-editor from 0.50.0 to 0.52.0 * build(deps): bump dumpurify from 3.1.6 to 3.2.0 * build(deps): make changes based on the dompurify upgrade where types are now an inherent part of the package * build(deps): bump diff from 5.2.0 to 7.0.0 * build(deps): bump element-internals-polyfill from 1.3.11 to 1.3.12 * build(deps): bump lit from 3.2.0 to 3.2.1 * build(deps-dev): bump globals from 15.8.0 to 15.12.0 (eslint dependency) * build(deps-dev): bump storybook dependencies * build(deps-dev): bump @web/dev-server deps * build(deps-dev): bump typescript from 5.5.3 to 5.6.3 * build(deps): bump uuid from 10.0.0 to 11.0.3 thereby eliminating the @types/uuid module * build(deps): bump tinymce-i18n from 24.7.15 to 24.11.11 * build(deps): bump all deps to latest and use backoffice global types for extension manifests * chore: change import path * build(deps-dev): bump rollup/plugin-commonjs to 26.0.3 for compatibility reasons * feat: replace outdated 'webworker-loader' with manual paths to monaco's web workers since they are esmodules anyway * build(deps-dev): bump storybook from 8.4.4 to 8.4.5 * build(deps): bump tiptap from 2.9.1 to 2.10.2 * build(deps): bump dompurify from 3.2.0 to 3.2.1 * build(deps): bump tinymce-i18n from 24.11.11 to 24.11.25 * build(deps): bump static icons * build(deps): bump marked from 15.0.0 to 15.0.2 * build(deps-dev): bump eslint + deps * build(deps-dev): bump vite + rollup dependencies * build(deps-dev): bump @playwright/test from 1.48.2 to 1.49.0 * build(deps-dev): bump @hey-api/openapi-ts from 0.55.3 to 0.57.1 generated new services * build(deps-dev): bump @types/mocha * build(deps): bump typescript from 5.6.3 to 5.7.2
2024-11-25 17:47:13 +01:00
"@types/mocha": "^10.0.10",
V15: Update Backoffice NPM dependencies (#18376) * build(deps-dev): update storybook from 8.4.7 to 8.5.6 * build(deps): update tiptap from 2.11.2 to 2.11.5 * build(deps-dev): update eslint stuff to latest * build(deps): update element-internals-polyfill from 1.3.12 to 1.3.13 * build(deps): update marked from 15.0.6 to 15.0.7 * build(deps-dev): update vite from 5.4.14 to 6.1.0 * build(deps-dev): update globals to 15.15.0 (eslint dependency) * build(deps): update icon libraries to latest * build(deps-dev): update prettier from 3.4.2 to 3.5.1 * chore: generate consts * build(deps-dev): update test-related libraries * feat: copy over code from the tiny base64-js library because it is not exported as esm and has not been updated in 4 years * build(deps-dev): remove dependency from base64-js * build(deps-dev): upgrade rollup dependencies * test: disable tests for tinyce * build(deps-dev): update @babel/core to 7.26.9 * build(deps): update storybook to latest * build(deps-dev): update types * build(deps-dev): update typedoc from 0.27.6 to 0.27.7 * build(deps-dev): update @rollup/plugin-commonjs to latest * build(deps): import tiny as default and re-export as module and default to make everyone happy (and avoid commonjs pitfalls) * build: remove dependency on commonjs to build externals * build(deps-dev): uninstall @rollup/plugin-commonjs as it is no longer needed * test: reenable tinymce tests * fix: sets a default label this mistake was highlighted by the test runner * test: reenable tinymce tests * build: ignores autogenerated test file * build: adds github error logging to icon generator * build: log as error * build: adds tests for generate:* scripts * build: optimises icons with svgo to remove useless things like comments this also ensures that icons are unchanged when we upgrade icon library packages as they would normally include things like versions as comments in the files
2025-02-20 11:29:54 +01:00
"@web/dev-server-esbuild": "^1.0.4",
2024-07-17 09:17:15 +02:00
"@web/dev-server-import-maps": "^0.2.1",
V15: Update Backoffice NPM dependencies (#18376) * build(deps-dev): update storybook from 8.4.7 to 8.5.6 * build(deps): update tiptap from 2.11.2 to 2.11.5 * build(deps-dev): update eslint stuff to latest * build(deps): update element-internals-polyfill from 1.3.12 to 1.3.13 * build(deps): update marked from 15.0.6 to 15.0.7 * build(deps-dev): update vite from 5.4.14 to 6.1.0 * build(deps-dev): update globals to 15.15.0 (eslint dependency) * build(deps): update icon libraries to latest * build(deps-dev): update prettier from 3.4.2 to 3.5.1 * chore: generate consts * build(deps-dev): update test-related libraries * feat: copy over code from the tiny base64-js library because it is not exported as esm and has not been updated in 4 years * build(deps-dev): remove dependency from base64-js * build(deps-dev): upgrade rollup dependencies * test: disable tests for tinyce * build(deps-dev): update @babel/core to 7.26.9 * build(deps): update storybook to latest * build(deps-dev): update types * build(deps-dev): update typedoc from 0.27.6 to 0.27.7 * build(deps-dev): update @rollup/plugin-commonjs to latest * build(deps): import tiny as default and re-export as module and default to make everyone happy (and avoid commonjs pitfalls) * build: remove dependency on commonjs to build externals * build(deps-dev): uninstall @rollup/plugin-commonjs as it is no longer needed * test: reenable tinymce tests * fix: sets a default label this mistake was highlighted by the test runner * test: reenable tinymce tests * build: ignores autogenerated test file * build: adds github error logging to icon generator * build: log as error * build: adds tests for generate:* scripts * build: optimises icons with svgo to remove useless things like comments this also ensures that icons are unchanged when we upgrade icon library packages as they would normally include things like versions as comments in the files
2025-02-20 11:29:54 +01:00
"@web/test-runner": "^0.20.0",
2023-12-16 10:56:37 +01:00
"@web/test-runner-playwright": "^0.11.0",
"babel-loader": "^9.2.1",
"cross-env": "7.0.3",
V15: Update Backoffice NPM dependencies (#18376) * build(deps-dev): update storybook from 8.4.7 to 8.5.6 * build(deps): update tiptap from 2.11.2 to 2.11.5 * build(deps-dev): update eslint stuff to latest * build(deps): update element-internals-polyfill from 1.3.12 to 1.3.13 * build(deps): update marked from 15.0.6 to 15.0.7 * build(deps-dev): update vite from 5.4.14 to 6.1.0 * build(deps-dev): update globals to 15.15.0 (eslint dependency) * build(deps): update icon libraries to latest * build(deps-dev): update prettier from 3.4.2 to 3.5.1 * chore: generate consts * build(deps-dev): update test-related libraries * feat: copy over code from the tiny base64-js library because it is not exported as esm and has not been updated in 4 years * build(deps-dev): remove dependency from base64-js * build(deps-dev): upgrade rollup dependencies * test: disable tests for tinyce * build(deps-dev): update @babel/core to 7.26.9 * build(deps): update storybook to latest * build(deps-dev): update types * build(deps-dev): update typedoc from 0.27.6 to 0.27.7 * build(deps-dev): update @rollup/plugin-commonjs to latest * build(deps): import tiny as default and re-export as module and default to make everyone happy (and avoid commonjs pitfalls) * build: remove dependency on commonjs to build externals * build(deps-dev): uninstall @rollup/plugin-commonjs as it is no longer needed * test: reenable tinymce tests * fix: sets a default label this mistake was highlighted by the test runner * test: reenable tinymce tests * build: ignores autogenerated test file * build: adds github error logging to icon generator * build: log as error * build: adds tests for generate:* scripts * build: optimises icons with svgo to remove useless things like comments this also ensures that icons are unchanged when we upgrade icon library packages as they would normally include things like versions as comments in the files
2025-02-20 11:29:54 +01:00
"eslint": "^9.20.1",
"eslint-config-prettier": "^10.0.1",
V15: npm updates 2024-11-15 (#17545) * build(deps): bump storybook from 8.3.5 to 8.4.4 * reenable public folder (with msw file) for storybook * build(deps-dev): bump vite from 5.4.6 to 5.4.11 * build(deps-dev): bump babel and rollup * build(deps-dev): bump typedoc from 0.26.5 to 0.26.11 * build(deps-dev): bump @hey-api/openapi-ts from 0.52.11 to 0.55.3 regenerated all models and migrated the config * build(deps-dev): bump eslint from 9.7.0 to 9.14.0 including related deps * build(deps-dev): bump all @types packages * build(deps-dev): bump lucide to 0.459.0 and simple-icons to 13.16.0 regenerate icons: - renamed `box-select` to `square-dashed` * build(deps): bump marked from 14.1.0 to 15.0.0 * build(deps): bump monaco-editor from 0.50.0 to 0.52.0 * build(deps): bump dumpurify from 3.1.6 to 3.2.0 * build(deps): make changes based on the dompurify upgrade where types are now an inherent part of the package * build(deps): bump diff from 5.2.0 to 7.0.0 * build(deps): bump element-internals-polyfill from 1.3.11 to 1.3.12 * build(deps): bump lit from 3.2.0 to 3.2.1 * build(deps-dev): bump globals from 15.8.0 to 15.12.0 (eslint dependency) * build(deps-dev): bump storybook dependencies * build(deps-dev): bump @web/dev-server deps * build(deps-dev): bump typescript from 5.5.3 to 5.6.3 * build(deps): bump uuid from 10.0.0 to 11.0.3 thereby eliminating the @types/uuid module * build(deps): bump tinymce-i18n from 24.7.15 to 24.11.11 * build(deps): bump all deps to latest and use backoffice global types for extension manifests * chore: change import path * build(deps-dev): bump rollup/plugin-commonjs to 26.0.3 for compatibility reasons * feat: replace outdated 'webworker-loader' with manual paths to monaco's web workers since they are esmodules anyway * build(deps-dev): bump storybook from 8.4.4 to 8.4.5 * build(deps): bump tiptap from 2.9.1 to 2.10.2 * build(deps): bump dompurify from 3.2.0 to 3.2.1 * build(deps): bump tinymce-i18n from 24.11.11 to 24.11.25 * build(deps): bump static icons * build(deps): bump marked from 15.0.0 to 15.0.2 * build(deps-dev): bump eslint + deps * build(deps-dev): bump vite + rollup dependencies * build(deps-dev): bump @playwright/test from 1.48.2 to 1.49.0 * build(deps-dev): bump @hey-api/openapi-ts from 0.55.3 to 0.57.1 generated new services * build(deps-dev): bump @types/mocha * build(deps): bump typescript from 5.6.3 to 5.7.2
2024-11-25 17:47:13 +01:00
"eslint-plugin-import": "^2.31.0",
V15: Update Backoffice NPM dependencies (#18376) * build(deps-dev): update storybook from 8.4.7 to 8.5.6 * build(deps): update tiptap from 2.11.2 to 2.11.5 * build(deps-dev): update eslint stuff to latest * build(deps): update element-internals-polyfill from 1.3.12 to 1.3.13 * build(deps): update marked from 15.0.6 to 15.0.7 * build(deps-dev): update vite from 5.4.14 to 6.1.0 * build(deps-dev): update globals to 15.15.0 (eslint dependency) * build(deps): update icon libraries to latest * build(deps-dev): update prettier from 3.4.2 to 3.5.1 * chore: generate consts * build(deps-dev): update test-related libraries * feat: copy over code from the tiny base64-js library because it is not exported as esm and has not been updated in 4 years * build(deps-dev): remove dependency from base64-js * build(deps-dev): upgrade rollup dependencies * test: disable tests for tinyce * build(deps-dev): update @babel/core to 7.26.9 * build(deps): update storybook to latest * build(deps-dev): update types * build(deps-dev): update typedoc from 0.27.6 to 0.27.7 * build(deps-dev): update @rollup/plugin-commonjs to latest * build(deps): import tiny as default and re-export as module and default to make everyone happy (and avoid commonjs pitfalls) * build: remove dependency on commonjs to build externals * build(deps-dev): uninstall @rollup/plugin-commonjs as it is no longer needed * test: reenable tinymce tests * fix: sets a default label this mistake was highlighted by the test runner * test: reenable tinymce tests * build: ignores autogenerated test file * build: adds github error logging to icon generator * build: log as error * build: adds tests for generate:* scripts * build: optimises icons with svgo to remove useless things like comments this also ensures that icons are unchanged when we upgrade icon library packages as they would normally include things like versions as comments in the files
2025-02-20 11:29:54 +01:00
"eslint-plugin-jsdoc": "^50.6.3",
V15: npm updates 2024-11-15 (#17545) * build(deps): bump storybook from 8.3.5 to 8.4.4 * reenable public folder (with msw file) for storybook * build(deps-dev): bump vite from 5.4.6 to 5.4.11 * build(deps-dev): bump babel and rollup * build(deps-dev): bump typedoc from 0.26.5 to 0.26.11 * build(deps-dev): bump @hey-api/openapi-ts from 0.52.11 to 0.55.3 regenerated all models and migrated the config * build(deps-dev): bump eslint from 9.7.0 to 9.14.0 including related deps * build(deps-dev): bump all @types packages * build(deps-dev): bump lucide to 0.459.0 and simple-icons to 13.16.0 regenerate icons: - renamed `box-select` to `square-dashed` * build(deps): bump marked from 14.1.0 to 15.0.0 * build(deps): bump monaco-editor from 0.50.0 to 0.52.0 * build(deps): bump dumpurify from 3.1.6 to 3.2.0 * build(deps): make changes based on the dompurify upgrade where types are now an inherent part of the package * build(deps): bump diff from 5.2.0 to 7.0.0 * build(deps): bump element-internals-polyfill from 1.3.11 to 1.3.12 * build(deps): bump lit from 3.2.0 to 3.2.1 * build(deps-dev): bump globals from 15.8.0 to 15.12.0 (eslint dependency) * build(deps-dev): bump storybook dependencies * build(deps-dev): bump @web/dev-server deps * build(deps-dev): bump typescript from 5.5.3 to 5.6.3 * build(deps): bump uuid from 10.0.0 to 11.0.3 thereby eliminating the @types/uuid module * build(deps): bump tinymce-i18n from 24.7.15 to 24.11.11 * build(deps): bump all deps to latest and use backoffice global types for extension manifests * chore: change import path * build(deps-dev): bump rollup/plugin-commonjs to 26.0.3 for compatibility reasons * feat: replace outdated 'webworker-loader' with manual paths to monaco's web workers since they are esmodules anyway * build(deps-dev): bump storybook from 8.4.4 to 8.4.5 * build(deps): bump tiptap from 2.9.1 to 2.10.2 * build(deps): bump dompurify from 3.2.0 to 3.2.1 * build(deps): bump tinymce-i18n from 24.11.11 to 24.11.25 * build(deps): bump static icons * build(deps): bump marked from 15.0.0 to 15.0.2 * build(deps-dev): bump eslint + deps * build(deps-dev): bump vite + rollup dependencies * build(deps-dev): bump @playwright/test from 1.48.2 to 1.49.0 * build(deps-dev): bump @hey-api/openapi-ts from 0.55.3 to 0.57.1 generated new services * build(deps-dev): bump @types/mocha * build(deps): bump typescript from 5.6.3 to 5.7.2
2024-11-25 17:47:13 +01:00
"eslint-plugin-lit": "^1.15.0",
2024-07-02 11:35:54 +02:00
"eslint-plugin-local-rules": "^3.0.2",
V15: Update Backoffice NPM dependencies (#18376) * build(deps-dev): update storybook from 8.4.7 to 8.5.6 * build(deps): update tiptap from 2.11.2 to 2.11.5 * build(deps-dev): update eslint stuff to latest * build(deps): update element-internals-polyfill from 1.3.12 to 1.3.13 * build(deps): update marked from 15.0.6 to 15.0.7 * build(deps-dev): update vite from 5.4.14 to 6.1.0 * build(deps-dev): update globals to 15.15.0 (eslint dependency) * build(deps): update icon libraries to latest * build(deps-dev): update prettier from 3.4.2 to 3.5.1 * chore: generate consts * build(deps-dev): update test-related libraries * feat: copy over code from the tiny base64-js library because it is not exported as esm and has not been updated in 4 years * build(deps-dev): remove dependency from base64-js * build(deps-dev): upgrade rollup dependencies * test: disable tests for tinyce * build(deps-dev): update @babel/core to 7.26.9 * build(deps): update storybook to latest * build(deps-dev): update types * build(deps-dev): update typedoc from 0.27.6 to 0.27.7 * build(deps-dev): update @rollup/plugin-commonjs to latest * build(deps): import tiny as default and re-export as module and default to make everyone happy (and avoid commonjs pitfalls) * build: remove dependency on commonjs to build externals * build(deps-dev): uninstall @rollup/plugin-commonjs as it is no longer needed * test: reenable tinymce tests * fix: sets a default label this mistake was highlighted by the test runner * test: reenable tinymce tests * build: ignores autogenerated test file * build: adds github error logging to icon generator * build: log as error * build: adds tests for generate:* scripts * build: optimises icons with svgo to remove useless things like comments this also ensures that icons are unchanged when we upgrade icon library packages as they would normally include things like versions as comments in the files
2025-02-20 11:29:54 +01:00
"eslint-plugin-prettier": "^5.2.3",
V15: npm updates 2024-11-15 (#17545) * build(deps): bump storybook from 8.3.5 to 8.4.4 * reenable public folder (with msw file) for storybook * build(deps-dev): bump vite from 5.4.6 to 5.4.11 * build(deps-dev): bump babel and rollup * build(deps-dev): bump typedoc from 0.26.5 to 0.26.11 * build(deps-dev): bump @hey-api/openapi-ts from 0.52.11 to 0.55.3 regenerated all models and migrated the config * build(deps-dev): bump eslint from 9.7.0 to 9.14.0 including related deps * build(deps-dev): bump all @types packages * build(deps-dev): bump lucide to 0.459.0 and simple-icons to 13.16.0 regenerate icons: - renamed `box-select` to `square-dashed` * build(deps): bump marked from 14.1.0 to 15.0.0 * build(deps): bump monaco-editor from 0.50.0 to 0.52.0 * build(deps): bump dumpurify from 3.1.6 to 3.2.0 * build(deps): make changes based on the dompurify upgrade where types are now an inherent part of the package * build(deps): bump diff from 5.2.0 to 7.0.0 * build(deps): bump element-internals-polyfill from 1.3.11 to 1.3.12 * build(deps): bump lit from 3.2.0 to 3.2.1 * build(deps-dev): bump globals from 15.8.0 to 15.12.0 (eslint dependency) * build(deps-dev): bump storybook dependencies * build(deps-dev): bump @web/dev-server deps * build(deps-dev): bump typescript from 5.5.3 to 5.6.3 * build(deps): bump uuid from 10.0.0 to 11.0.3 thereby eliminating the @types/uuid module * build(deps): bump tinymce-i18n from 24.7.15 to 24.11.11 * build(deps): bump all deps to latest and use backoffice global types for extension manifests * chore: change import path * build(deps-dev): bump rollup/plugin-commonjs to 26.0.3 for compatibility reasons * feat: replace outdated 'webworker-loader' with manual paths to monaco's web workers since they are esmodules anyway * build(deps-dev): bump storybook from 8.4.4 to 8.4.5 * build(deps): bump tiptap from 2.9.1 to 2.10.2 * build(deps): bump dompurify from 3.2.0 to 3.2.1 * build(deps): bump tinymce-i18n from 24.11.11 to 24.11.25 * build(deps): bump static icons * build(deps): bump marked from 15.0.0 to 15.0.2 * build(deps-dev): bump eslint + deps * build(deps-dev): bump vite + rollup dependencies * build(deps-dev): bump @playwright/test from 1.48.2 to 1.49.0 * build(deps-dev): bump @hey-api/openapi-ts from 0.55.3 to 0.57.1 generated new services * build(deps-dev): bump @types/mocha * build(deps): bump typescript from 5.6.3 to 5.7.2
2024-11-25 17:47:13 +01:00
"eslint-plugin-wc": "^2.2.0",
"glob": "^11.0.1",
V15: Update Backoffice NPM dependencies (#18376) * build(deps-dev): update storybook from 8.4.7 to 8.5.6 * build(deps): update tiptap from 2.11.2 to 2.11.5 * build(deps-dev): update eslint stuff to latest * build(deps): update element-internals-polyfill from 1.3.12 to 1.3.13 * build(deps): update marked from 15.0.6 to 15.0.7 * build(deps-dev): update vite from 5.4.14 to 6.1.0 * build(deps-dev): update globals to 15.15.0 (eslint dependency) * build(deps): update icon libraries to latest * build(deps-dev): update prettier from 3.4.2 to 3.5.1 * chore: generate consts * build(deps-dev): update test-related libraries * feat: copy over code from the tiny base64-js library because it is not exported as esm and has not been updated in 4 years * build(deps-dev): remove dependency from base64-js * build(deps-dev): upgrade rollup dependencies * test: disable tests for tinyce * build(deps-dev): update @babel/core to 7.26.9 * build(deps): update storybook to latest * build(deps-dev): update types * build(deps-dev): update typedoc from 0.27.6 to 0.27.7 * build(deps-dev): update @rollup/plugin-commonjs to latest * build(deps): import tiny as default and re-export as module and default to make everyone happy (and avoid commonjs pitfalls) * build: remove dependency on commonjs to build externals * build(deps-dev): uninstall @rollup/plugin-commonjs as it is no longer needed * test: reenable tinymce tests * fix: sets a default label this mistake was highlighted by the test runner * test: reenable tinymce tests * build: ignores autogenerated test file * build: adds github error logging to icon generator * build: log as error * build: adds tests for generate:* scripts * build: optimises icons with svgo to remove useless things like comments this also ensures that icons are unchanged when we upgrade icon library packages as they would normally include things like versions as comments in the files
2025-02-20 11:29:54 +01:00
"globals": "^15.15.0",
"lucide-static": "^0.473.0",
2024-08-06 13:09:29 +02:00
"madge": "^8.0.0",
2023-12-16 09:54:51 +01:00
"msw": "^1.3.2",
"playwright-msw": "^3.0.1",
V15: Update Backoffice NPM dependencies (#18376) * build(deps-dev): update storybook from 8.4.7 to 8.5.6 * build(deps): update tiptap from 2.11.2 to 2.11.5 * build(deps-dev): update eslint stuff to latest * build(deps): update element-internals-polyfill from 1.3.12 to 1.3.13 * build(deps): update marked from 15.0.6 to 15.0.7 * build(deps-dev): update vite from 5.4.14 to 6.1.0 * build(deps-dev): update globals to 15.15.0 (eslint dependency) * build(deps): update icon libraries to latest * build(deps-dev): update prettier from 3.4.2 to 3.5.1 * chore: generate consts * build(deps-dev): update test-related libraries * feat: copy over code from the tiny base64-js library because it is not exported as esm and has not been updated in 4 years * build(deps-dev): remove dependency from base64-js * build(deps-dev): upgrade rollup dependencies * test: disable tests for tinyce * build(deps-dev): update @babel/core to 7.26.9 * build(deps): update storybook to latest * build(deps-dev): update types * build(deps-dev): update typedoc from 0.27.6 to 0.27.7 * build(deps-dev): update @rollup/plugin-commonjs to latest * build(deps): import tiny as default and re-export as module and default to make everyone happy (and avoid commonjs pitfalls) * build: remove dependency on commonjs to build externals * build(deps-dev): uninstall @rollup/plugin-commonjs as it is no longer needed * test: reenable tinymce tests * fix: sets a default label this mistake was highlighted by the test runner * test: reenable tinymce tests * build: ignores autogenerated test file * build: adds github error logging to icon generator * build: log as error * build: adds tests for generate:* scripts * build: optimises icons with svgo to remove useless things like comments this also ensures that icons are unchanged when we upgrade icon library packages as they would normally include things like versions as comments in the files
2025-02-20 11:29:54 +01:00
"prettier": "3.5.1",
"remark-gfm": "^4.0.0",
V15: Update Backoffice NPM dependencies (#18376) * build(deps-dev): update storybook from 8.4.7 to 8.5.6 * build(deps): update tiptap from 2.11.2 to 2.11.5 * build(deps-dev): update eslint stuff to latest * build(deps): update element-internals-polyfill from 1.3.12 to 1.3.13 * build(deps): update marked from 15.0.6 to 15.0.7 * build(deps-dev): update vite from 5.4.14 to 6.1.0 * build(deps-dev): update globals to 15.15.0 (eslint dependency) * build(deps): update icon libraries to latest * build(deps-dev): update prettier from 3.4.2 to 3.5.1 * chore: generate consts * build(deps-dev): update test-related libraries * feat: copy over code from the tiny base64-js library because it is not exported as esm and has not been updated in 4 years * build(deps-dev): remove dependency from base64-js * build(deps-dev): upgrade rollup dependencies * test: disable tests for tinyce * build(deps-dev): update @babel/core to 7.26.9 * build(deps): update storybook to latest * build(deps-dev): update types * build(deps-dev): update typedoc from 0.27.6 to 0.27.7 * build(deps-dev): update @rollup/plugin-commonjs to latest * build(deps): import tiny as default and re-export as module and default to make everyone happy (and avoid commonjs pitfalls) * build: remove dependency on commonjs to build externals * build(deps-dev): uninstall @rollup/plugin-commonjs as it is no longer needed * test: reenable tinymce tests * fix: sets a default label this mistake was highlighted by the test runner * test: reenable tinymce tests * build: ignores autogenerated test file * build: adds github error logging to icon generator * build: log as error * build: adds tests for generate:* scripts * build: optimises icons with svgo to remove useless things like comments this also ensures that icons are unchanged when we upgrade icon library packages as they would normally include things like versions as comments in the files
2025-02-20 11:29:54 +01:00
"rollup": "^4.34.8",
"rollup-plugin-esbuild": "^6.2.0",
"rollup-plugin-import-css": "^3.5.8",
V15: Update Backoffice NPM dependencies (#18376) * build(deps-dev): update storybook from 8.4.7 to 8.5.6 * build(deps): update tiptap from 2.11.2 to 2.11.5 * build(deps-dev): update eslint stuff to latest * build(deps): update element-internals-polyfill from 1.3.12 to 1.3.13 * build(deps): update marked from 15.0.6 to 15.0.7 * build(deps-dev): update vite from 5.4.14 to 6.1.0 * build(deps-dev): update globals to 15.15.0 (eslint dependency) * build(deps): update icon libraries to latest * build(deps-dev): update prettier from 3.4.2 to 3.5.1 * chore: generate consts * build(deps-dev): update test-related libraries * feat: copy over code from the tiny base64-js library because it is not exported as esm and has not been updated in 4 years * build(deps-dev): remove dependency from base64-js * build(deps-dev): upgrade rollup dependencies * test: disable tests for tinyce * build(deps-dev): update @babel/core to 7.26.9 * build(deps): update storybook to latest * build(deps-dev): update types * build(deps-dev): update typedoc from 0.27.6 to 0.27.7 * build(deps-dev): update @rollup/plugin-commonjs to latest * build(deps): import tiny as default and re-export as module and default to make everyone happy (and avoid commonjs pitfalls) * build: remove dependency on commonjs to build externals * build(deps-dev): uninstall @rollup/plugin-commonjs as it is no longer needed * test: reenable tinymce tests * fix: sets a default label this mistake was highlighted by the test runner * test: reenable tinymce tests * build: ignores autogenerated test file * build: adds github error logging to icon generator * build: log as error * build: adds tests for generate:* scripts * build: optimises icons with svgo to remove useless things like comments this also ensures that icons are unchanged when we upgrade icon library packages as they would normally include things like versions as comments in the files
2025-02-20 11:29:54 +01:00
"simple-icons": "^14.7.0",
"storybook": "^8.6.7",
V15: Update Backoffice NPM dependencies (#18376) * build(deps-dev): update storybook from 8.4.7 to 8.5.6 * build(deps): update tiptap from 2.11.2 to 2.11.5 * build(deps-dev): update eslint stuff to latest * build(deps): update element-internals-polyfill from 1.3.12 to 1.3.13 * build(deps): update marked from 15.0.6 to 15.0.7 * build(deps-dev): update vite from 5.4.14 to 6.1.0 * build(deps-dev): update globals to 15.15.0 (eslint dependency) * build(deps): update icon libraries to latest * build(deps-dev): update prettier from 3.4.2 to 3.5.1 * chore: generate consts * build(deps-dev): update test-related libraries * feat: copy over code from the tiny base64-js library because it is not exported as esm and has not been updated in 4 years * build(deps-dev): remove dependency from base64-js * build(deps-dev): upgrade rollup dependencies * test: disable tests for tinyce * build(deps-dev): update @babel/core to 7.26.9 * build(deps): update storybook to latest * build(deps-dev): update types * build(deps-dev): update typedoc from 0.27.6 to 0.27.7 * build(deps-dev): update @rollup/plugin-commonjs to latest * build(deps): import tiny as default and re-export as module and default to make everyone happy (and avoid commonjs pitfalls) * build: remove dependency on commonjs to build externals * build(deps-dev): uninstall @rollup/plugin-commonjs as it is no longer needed * test: reenable tinymce tests * fix: sets a default label this mistake was highlighted by the test runner * test: reenable tinymce tests * build: ignores autogenerated test file * build: adds github error logging to icon generator * build: log as error * build: adds tests for generate:* scripts * build: optimises icons with svgo to remove useless things like comments this also ensures that icons are unchanged when we upgrade icon library packages as they would normally include things like versions as comments in the files
2025-02-20 11:29:54 +01:00
"svgo": "^3.3.2",
"tiny-glob": "^0.2.9",
2024-07-17 09:17:15 +02:00
"tsc-alias": "^1.8.10",
V15: Update Backoffice NPM dependencies (#18376) * build(deps-dev): update storybook from 8.4.7 to 8.5.6 * build(deps): update tiptap from 2.11.2 to 2.11.5 * build(deps-dev): update eslint stuff to latest * build(deps): update element-internals-polyfill from 1.3.12 to 1.3.13 * build(deps): update marked from 15.0.6 to 15.0.7 * build(deps-dev): update vite from 5.4.14 to 6.1.0 * build(deps-dev): update globals to 15.15.0 (eslint dependency) * build(deps): update icon libraries to latest * build(deps-dev): update prettier from 3.4.2 to 3.5.1 * chore: generate consts * build(deps-dev): update test-related libraries * feat: copy over code from the tiny base64-js library because it is not exported as esm and has not been updated in 4 years * build(deps-dev): remove dependency from base64-js * build(deps-dev): upgrade rollup dependencies * test: disable tests for tinyce * build(deps-dev): update @babel/core to 7.26.9 * build(deps): update storybook to latest * build(deps-dev): update types * build(deps-dev): update typedoc from 0.27.6 to 0.27.7 * build(deps-dev): update @rollup/plugin-commonjs to latest * build(deps): import tiny as default and re-export as module and default to make everyone happy (and avoid commonjs pitfalls) * build: remove dependency on commonjs to build externals * build(deps-dev): uninstall @rollup/plugin-commonjs as it is no longer needed * test: reenable tinymce tests * fix: sets a default label this mistake was highlighted by the test runner * test: reenable tinymce tests * build: ignores autogenerated test file * build: adds github error logging to icon generator * build: log as error * build: adds tests for generate:* scripts * build: optimises icons with svgo to remove useless things like comments this also ensures that icons are unchanged when we upgrade icon library packages as they would normally include things like versions as comments in the files
2025-02-20 11:29:54 +01:00
"typedoc": "^0.27.7",
"typescript": "^5.7.3",
V15: Update Backoffice NPM dependencies (#18376) * build(deps-dev): update storybook from 8.4.7 to 8.5.6 * build(deps): update tiptap from 2.11.2 to 2.11.5 * build(deps-dev): update eslint stuff to latest * build(deps): update element-internals-polyfill from 1.3.12 to 1.3.13 * build(deps): update marked from 15.0.6 to 15.0.7 * build(deps-dev): update vite from 5.4.14 to 6.1.0 * build(deps-dev): update globals to 15.15.0 (eslint dependency) * build(deps): update icon libraries to latest * build(deps-dev): update prettier from 3.4.2 to 3.5.1 * chore: generate consts * build(deps-dev): update test-related libraries * feat: copy over code from the tiny base64-js library because it is not exported as esm and has not been updated in 4 years * build(deps-dev): remove dependency from base64-js * build(deps-dev): upgrade rollup dependencies * test: disable tests for tinyce * build(deps-dev): update @babel/core to 7.26.9 * build(deps): update storybook to latest * build(deps-dev): update types * build(deps-dev): update typedoc from 0.27.6 to 0.27.7 * build(deps-dev): update @rollup/plugin-commonjs to latest * build(deps): import tiny as default and re-export as module and default to make everyone happy (and avoid commonjs pitfalls) * build: remove dependency on commonjs to build externals * build(deps-dev): uninstall @rollup/plugin-commonjs as it is no longer needed * test: reenable tinymce tests * fix: sets a default label this mistake was highlighted by the test runner * test: reenable tinymce tests * build: ignores autogenerated test file * build: adds github error logging to icon generator * build: log as error * build: adds tests for generate:* scripts * build: optimises icons with svgo to remove useless things like comments this also ensures that icons are unchanged when we upgrade icon library packages as they would normally include things like versions as comments in the files
2025-02-20 11:29:54 +01:00
"typescript-eslint": "^8.24.1",
"typescript-json-schema": "^0.65.1",
"vite": "^6.2.2",
"vite-plugin-static-copy": "^2.2.0",
"vite-tsconfig-paths": "^5.1.4",
2023-12-16 09:54:51 +01:00
"web-component-analyzer": "^2.0.0"
},
"msw": {
"workerDirectory": "public"
2023-10-05 14:05:57 +02:00
},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
}
V15: Update Backoffice NPM dependencies (#18376) * build(deps-dev): update storybook from 8.4.7 to 8.5.6 * build(deps): update tiptap from 2.11.2 to 2.11.5 * build(deps-dev): update eslint stuff to latest * build(deps): update element-internals-polyfill from 1.3.12 to 1.3.13 * build(deps): update marked from 15.0.6 to 15.0.7 * build(deps-dev): update vite from 5.4.14 to 6.1.0 * build(deps-dev): update globals to 15.15.0 (eslint dependency) * build(deps): update icon libraries to latest * build(deps-dev): update prettier from 3.4.2 to 3.5.1 * chore: generate consts * build(deps-dev): update test-related libraries * feat: copy over code from the tiny base64-js library because it is not exported as esm and has not been updated in 4 years * build(deps-dev): remove dependency from base64-js * build(deps-dev): upgrade rollup dependencies * test: disable tests for tinyce * build(deps-dev): update @babel/core to 7.26.9 * build(deps): update storybook to latest * build(deps-dev): update types * build(deps-dev): update typedoc from 0.27.6 to 0.27.7 * build(deps-dev): update @rollup/plugin-commonjs to latest * build(deps): import tiny as default and re-export as module and default to make everyone happy (and avoid commonjs pitfalls) * build: remove dependency on commonjs to build externals * build(deps-dev): uninstall @rollup/plugin-commonjs as it is no longer needed * test: reenable tinymce tests * fix: sets a default label this mistake was highlighted by the test runner * test: reenable tinymce tests * build: ignores autogenerated test file * build: adds github error logging to icon generator * build: log as error * build: adds tests for generate:* scripts * build: optimises icons with svgo to remove useless things like comments this also ensures that icons are unchanged when we upgrade icon library packages as they would normally include things like versions as comments in the files
2025-02-20 11:29:54 +01:00
}