mirror of
https://github.com/ueberdosis/tiptap.git
synced 2024-11-28 07:40:13 +08:00
52 lines
1.2 KiB
JSON
52 lines
1.2 KiB
JSON
{
|
|
"name": "@tiptap/extension-code-block-lowlight",
|
|
"description": "code block extension for tiptap",
|
|
"version": "3.0.0-next.1",
|
|
"homepage": "https://tiptap.dev",
|
|
"keywords": [
|
|
"tiptap",
|
|
"tiptap extension"
|
|
],
|
|
"license": "MIT",
|
|
"funding": {
|
|
"type": "github",
|
|
"url": "https://github.com/sponsors/ueberdosis"
|
|
},
|
|
"type": "module",
|
|
"exports": {
|
|
".": {
|
|
"types": "./dist/index.d.ts",
|
|
"import": "./dist/index.js",
|
|
"require": "./dist/index.cjs"
|
|
}
|
|
},
|
|
"main": "dist/index.cjs",
|
|
"module": "dist/index.js",
|
|
"types": "dist/index.d.ts",
|
|
"files": [
|
|
"src",
|
|
"dist"
|
|
],
|
|
"devDependencies": {
|
|
"@tiptap/core": "^3.0.0-next.1",
|
|
"@tiptap/extension-code-block": "^3.0.0-next.1",
|
|
"@tiptap/pm": "^3.0.0-next.1",
|
|
"lowlight": "^2 || ^3"
|
|
},
|
|
"peerDependencies": {
|
|
"@tiptap/core": "^3.0.0-next.1",
|
|
"@tiptap/extension-code-block": "^3.0.0-next.1",
|
|
"@tiptap/pm": "^3.0.0-next.1",
|
|
"lowlight": "^2 || ^3",
|
|
"highlight.js": "^11"
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/ueberdosis/tiptap",
|
|
"directory": "packages/extension-code-block-lowlight"
|
|
},
|
|
"scripts": {
|
|
"build": "tsup"
|
|
}
|
|
}
|