-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
63 lines (63 loc) · 1.62 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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
{
"name": "tiptap-extension-resize-image",
"version": "1.2.1",
"type": "module",
"description": "A tiptap image resizing extension for React, Vue, Next, and VanillaJS. Additionally, it can align the image position.",
"main": "dist/index.js",
"exports": {
".": {
"types": "./dist/index.d.ts",
"require": "./dist/index.js",
"import": "./esm/index.js"
}
},
"repository": {
"type": "git",
"url": "https://github.com/bae-sh/tiptap-extension-resize-image"
},
"scripts": {
"build": "yarn clean && yarn build:tsc && yarn build:rollup",
"build:tsc": "yarn tsc --declaration --emitDeclarationOnly --declarationDir dist",
"build:rollup": "rollup -c rollup.config.mjs",
"clean": "rm -rf dist esm",
"test": "jest"
},
"author": "bae-sh <[email protected]>",
"contributors": [
{
"name": "dongyounyim",
"email": "[email protected]"
}
],
"directories": {
"lib": "lib"
},
"license": "MIT",
"keywords": [
"tiptap",
"tiptap extension",
"image",
"resize-image",
"resizable image",
"align image"
],
"devDependencies": {
"@babel/core": "^7.23.6",
"@babel/preset-env": "^7.23.6",
"@babel/preset-typescript": "^7.23.3",
"@rollup/plugin-typescript": "^11.1.5",
"@tiptap/core": "^2.1.13",
"@tiptap/extension-image": "^2.1.13",
"@tiptap/pm": "^2.1.13",
"@types/node": "^20.10.4",
"prettier": "^3.3.3",
"rollup": "^4.8.0",
"tslib": "^2.6.2",
"typescript": "^4.9.5"
},
"peerDependencies": {
"@tiptap/core": "^2.0.0",
"@tiptap/extension-image": "^2.0.0",
"@tiptap/pm": "^2.0.0"
}
}