tiptap/packages/extension-table-cell/package.json

47 lines
995 B
JSON
Raw Normal View History

2021-01-21 06:42:01 +08:00
{
"name": "@tiptap/extension-table-cell",
"description": "table cell extension for tiptap",
"version": "2.9.1",
2021-01-21 06:42:01 +08:00
"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",
"umd": "dist/index.umd.js",
"types": "dist/index.d.ts",
2021-01-21 06:42:01 +08:00
"files": [
"src",
"dist"
],
"devDependencies": {
"@tiptap/core": "^2.9.1"
},
"peerDependencies": {
2024-09-17 21:43:04 +08:00
"@tiptap/core": "^2.7.0"
},
"repository": {
"type": "git",
"url": "https://github.com/ueberdosis/tiptap",
"directory": "packages/extension-table-cell"
},
"scripts": {
"clean": "rm -rf dist",
"build": "npm run clean && rollup -c"
2021-01-21 06:42:01 +08:00
}
2023-04-26 20:19:13 +08:00
}