2020-11-06 21:46:59 +08:00
|
|
|
{
|
|
|
|
"name": "@tiptap/extension-text-style",
|
2020-11-27 21:58:28 +08:00
|
|
|
"description": "text style extension for tiptap",
|
2024-09-26 20:24:01 +08:00
|
|
|
"version": "2.7.4",
|
2020-11-16 22:15:26 +08:00
|
|
|
"homepage": "https://tiptap.dev",
|
2020-11-17 05:40:37 +08:00
|
|
|
"keywords": [
|
|
|
|
"tiptap",
|
|
|
|
"tiptap extension"
|
|
|
|
],
|
2020-11-16 22:15:26 +08:00
|
|
|
"license": "MIT",
|
|
|
|
"funding": {
|
|
|
|
"type": "github",
|
|
|
|
"url": "https://github.com/sponsors/ueberdosis"
|
|
|
|
},
|
2022-11-24 23:06:42 +08:00
|
|
|
"type": "module",
|
|
|
|
"exports": {
|
|
|
|
".": {
|
2023-02-08 18:12:43 +08:00
|
|
|
"types": "./dist/packages/extension-text-style/src/index.d.ts",
|
2023-01-25 17:19:51 +08:00
|
|
|
"import": "./dist/index.js",
|
|
|
|
"require": "./dist/index.cjs"
|
2022-11-24 23:06:42 +08:00
|
|
|
}
|
|
|
|
},
|
2023-01-25 17:19:51 +08:00
|
|
|
"main": "dist/index.cjs",
|
|
|
|
"module": "dist/index.js",
|
2023-02-08 18:12:43 +08:00
|
|
|
"umd": "dist/index.umd.js",
|
|
|
|
"types": "dist/packages/extension-text-style/src/index.d.ts",
|
2020-11-06 21:46:59 +08:00
|
|
|
"files": [
|
|
|
|
"src",
|
|
|
|
"dist"
|
|
|
|
],
|
2023-03-30 18:36:15 +08:00
|
|
|
"devDependencies": {
|
2024-09-26 20:24:01 +08:00
|
|
|
"@tiptap/core": "^2.7.4"
|
2021-07-22 21:42:45 +08:00
|
|
|
},
|
2023-03-30 18:36:15 +08:00
|
|
|
"peerDependencies": {
|
2024-09-17 21:43:04 +08:00
|
|
|
"@tiptap/core": "^2.7.0"
|
2022-12-05 16:13:53 +08:00
|
|
|
},
|
2021-07-22 21:42:45 +08:00
|
|
|
"repository": {
|
|
|
|
"type": "git",
|
|
|
|
"url": "https://github.com/ueberdosis/tiptap",
|
|
|
|
"directory": "packages/extension-text-style"
|
2023-01-25 17:19:51 +08:00
|
|
|
},
|
|
|
|
"scripts": {
|
2023-02-08 18:12:43 +08:00
|
|
|
"clean": "rm -rf dist",
|
|
|
|
"build": "npm run clean && rollup -c"
|
2020-11-06 21:46:59 +08:00
|
|
|
}
|
2023-04-26 20:19:13 +08:00
|
|
|
}
|