mirror of
https://github.com/ueberdosis/tiptap.git
synced 2024-11-24 03:39:01 +08:00
47 lines
1.0 KiB
JSON
47 lines
1.0 KiB
JSON
{
|
|
"name": "@tiptap/extension-strike",
|
|
"description": "strike extension for tiptap",
|
|
"version": "2.6.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/packages/extension-strike/src/index.d.ts",
|
|
"import": "./dist/index.js",
|
|
"require": "./dist/index.cjs"
|
|
}
|
|
},
|
|
"main": "dist/index.cjs",
|
|
"module": "dist/index.js",
|
|
"umd": "dist/index.umd.js",
|
|
"types": "dist/packages/extension-strike/src/index.d.ts",
|
|
"files": [
|
|
"src",
|
|
"dist"
|
|
],
|
|
"devDependencies": {
|
|
"@tiptap/core": "^2.6.1"
|
|
},
|
|
"peerDependencies": {
|
|
"@tiptap/core": "^2.6.1"
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/ueberdosis/tiptap",
|
|
"directory": "packages/extension-strike"
|
|
},
|
|
"scripts": {
|
|
"clean": "rm -rf dist",
|
|
"build": "npm run clean && rollup -c"
|
|
}
|
|
}
|