-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 1.09 KB
/
package.json
File metadata and controls
36 lines (36 loc) · 1.09 KB
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
{
"name": "@pentestpad/tiptap-extension-figure",
"version": "1.1.0",
"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": "^3.19.0",
"@tiptap/extension-image": "^3.19.0",
"@tiptap/pm": "^3.19.0",
"rollup": "^4.34.8",
"rollup-plugin-auto-external": "^2.0.0",
"rollup-plugin-postcss": "^4.0.2",
"rollup-plugin-typescript2": "^0.36.0",
"typescript": "^5.9.3"
},
"peerDependencies": {
"@tiptap/core": "^3.19.0",
"@tiptap/extension-image": "^3.19.0",
"@tiptap/pm": "^3.19.0"
},
"repository": {
"type": "git",
"url": "https://github.com/PentestPad/tiptap-extension-figure.git"
}
}