mirror of
https://github.com/ueberdosis/tiptap.git
synced 2024-11-24 03:39:01 +08:00
49 lines
1.1 KiB
JSON
49 lines
1.1 KiB
JSON
{
|
|
"name": "@tiptap/extension-task-item",
|
|
"description": "task item extension for tiptap",
|
|
"version": "2.5.0-beta.4",
|
|
"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-task-item/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-task-item/src/index.d.ts",
|
|
"files": [
|
|
"src",
|
|
"dist"
|
|
],
|
|
"devDependencies": {
|
|
"@tiptap/core": "^2.5.0-beta.4",
|
|
"@tiptap/pm": "^2.5.0-beta.4"
|
|
},
|
|
"peerDependencies": {
|
|
"@tiptap/core": "^2.0.0",
|
|
"@tiptap/pm": "^2.0.0"
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/ueberdosis/tiptap",
|
|
"directory": "packages/extension-task-item"
|
|
},
|
|
"scripts": {
|
|
"clean": "rm -rf dist",
|
|
"build": "npm run clean && rollup -c"
|
|
}
|
|
}
|