Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

@ckeditor/ckeditor5-code-block

Package Overview
Dependencies
Maintainers
1
Versions
756
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@ckeditor/ckeditor5-code-block - npm Package Compare versions

Comparing version 37.0.0-alpha.2 to 37.0.0-alpha.3

38

package.json
{
"name": "@ckeditor/ckeditor5-code-block",
"version": "37.0.0-alpha.2",
"version": "37.0.0-alpha.3",
"description": "Code block feature for CKEditor 5.",

@@ -15,23 +15,23 @@ "keywords": [

"dependencies": {
"ckeditor5": "^37.0.0-alpha.2"
"ckeditor5": "^37.0.0-alpha.3"
},
"devDependencies": {
"@ckeditor/ckeditor5-alignment": "^37.0.0-alpha.2",
"@ckeditor/ckeditor5-autoformat": "^37.0.0-alpha.2",
"@ckeditor/ckeditor5-basic-styles": "^37.0.0-alpha.2",
"@ckeditor/ckeditor5-block-quote": "^37.0.0-alpha.2",
"@ckeditor/ckeditor5-clipboard": "^37.0.0-alpha.2",
"@ckeditor/ckeditor5-core": "^37.0.0-alpha.2",
"@ckeditor/ckeditor5-alignment": "^37.0.0-alpha.3",
"@ckeditor/ckeditor5-autoformat": "^37.0.0-alpha.3",
"@ckeditor/ckeditor5-basic-styles": "^37.0.0-alpha.3",
"@ckeditor/ckeditor5-block-quote": "^37.0.0-alpha.3",
"@ckeditor/ckeditor5-clipboard": "^37.0.0-alpha.3",
"@ckeditor/ckeditor5-core": "^37.0.0-alpha.3",
"@ckeditor/ckeditor5-dev-utils": "^35.0.0",
"@ckeditor/ckeditor5-engine": "^37.0.0-alpha.2",
"@ckeditor/ckeditor5-enter": "^37.0.0-alpha.2",
"@ckeditor/ckeditor5-editor-classic": "^37.0.0-alpha.2",
"@ckeditor/ckeditor5-image": "^37.0.0-alpha.2",
"@ckeditor/ckeditor5-indent": "^37.0.0-alpha.2",
"@ckeditor/ckeditor5-list": "^37.0.0-alpha.2",
"@ckeditor/ckeditor5-markdown-gfm": "^37.0.0-alpha.2",
"@ckeditor/ckeditor5-paragraph": "^37.0.0-alpha.2",
"@ckeditor/ckeditor5-theme-lark": "^37.0.0-alpha.2",
"@ckeditor/ckeditor5-undo": "^37.0.0-alpha.2",
"@ckeditor/ckeditor5-utils": "^37.0.0-alpha.2",
"@ckeditor/ckeditor5-engine": "^37.0.0-alpha.3",
"@ckeditor/ckeditor5-enter": "^37.0.0-alpha.3",
"@ckeditor/ckeditor5-editor-classic": "^37.0.0-alpha.3",
"@ckeditor/ckeditor5-image": "^37.0.0-alpha.3",
"@ckeditor/ckeditor5-indent": "^37.0.0-alpha.3",
"@ckeditor/ckeditor5-list": "^37.0.0-alpha.3",
"@ckeditor/ckeditor5-markdown-gfm": "^37.0.0-alpha.3",
"@ckeditor/ckeditor5-paragraph": "^37.0.0-alpha.3",
"@ckeditor/ckeditor5-theme-lark": "^37.0.0-alpha.3",
"@ckeditor/ckeditor5-undo": "^37.0.0-alpha.3",
"@ckeditor/ckeditor5-utils": "^37.0.0-alpha.3",
"typescript": "^4.8.4",

@@ -38,0 +38,0 @@ "webpack": "^5.58.1",

@@ -8,3 +8,5 @@ /**

*/
import { Plugin, type PluginDependencies } from 'ckeditor5/src/core';
import { Plugin } from 'ckeditor5/src/core';
import CodeBlockEditing from './codeblockediting';
import CodeBlockUI from './codeblockui';
/**

@@ -23,3 +25,3 @@ * The code block plugin.

*/
static get requires(): PluginDependencies;
static get requires(): readonly [typeof CodeBlockEditing, typeof CodeBlockUI];
/**

@@ -26,0 +28,0 @@ * @inheritDoc

@@ -8,3 +8,4 @@ /**

*/
import { Plugin, type PluginDependencies, type Editor } from 'ckeditor5/src/core';
import { Plugin, type Editor } from 'ckeditor5/src/core';
import { ShiftEnter } from 'ckeditor5/src/enter';
/**

@@ -23,3 +24,3 @@ * The editing part of the code block feature.

*/
static get requires(): PluginDependencies;
static get requires(): readonly [typeof ShiftEnter];
/**

@@ -26,0 +27,0 @@ * @inheritDoc

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc