-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
37 lines (37 loc) · 1.13 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
{
"name": "@pentestpad/tiptap-extension-figure",
"version": "1.0.5",
"description": "An extension for Tiptap that allows you to add and edit captions for images as well as align and resize them.",
"license": "MIT",
"main": "dist/index.cjs.js",
"module": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"clean": "rm -rf dist",
"build": "npm run clean && rollup -c",
"dev": "npm run clean && rollup -c -w"
},
"devDependencies": {
"@rollup/plugin-babel": "^6.0.4",
"@rollup/plugin-commonjs": "^28.0.2",
"@rollup/plugin-url": "^8.0.2",
"@tiptap/core": "^2.11.5",
"@tiptap/extension-image": "^2.11.5",
"@tiptap/pm": "^2.11.5",
"rollup": "^4.34.8",
"rollup-plugin-auto-external": "^2.0.0",
"rollup-plugin-postcss": "^4.0.2",
"rollup-plugin-sourcemaps": "^0.6.3",
"rollup-plugin-typescript2": "^0.36.0",
"typescript": "^5.7.3"
},
"peerDependencies": {
"@tiptap/core": "^2.0.0",
"@tiptap/extension-image": "^2.0.0",
"@tiptap/pm": "^2.0.0"
},
"repository": {
"type": "git",
"url": "https://github.com/PentestPad/tiptap-extension-figure.git"
}
}