-
-
Notifications
You must be signed in to change notification settings - Fork 24
/
package.json
46 lines (46 loc) · 1.23 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
{
"name": "@sereneinserenade/tiptap-comment-extension",
"version": "0.1.2",
"description": "Tiptap Extension for adding comments",
"keywords": [
"tiptap-comment-extension",
"tiptap",
"tiptap-extension",
"wysiwyg",
"text editor",
"prosemirror"
],
"repository": {
"type": "git",
"url": "https://github.com/sereneinserenade/tiptap-comment-extension/"
},
"author": "Jeet Mandaliya (github: sereneinserenade)",
"funding": {
"type": "individual",
"url": "https://github.com/sponsors/sereneinserenade"
},
"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.3",
"@rollup/plugin-commonjs": "^24.0.1",
"@tiptap/core": "^2.0.0-beta.220",
"@tiptap/pm": "^2.0.0-beta.220",
"rollup": "^3.17.3",
"rollup-plugin-auto-external": "^2.0.0",
"rollup-plugin-sourcemaps": "^0.6.3",
"rollup-plugin-typescript2": "^0.34.1",
"typescript": "^4.9.5"
},
"peerDependencies": {
"@tiptap/core": "^2.x.x",
"@tiptap/pm": "^2.x.x"
}
}