-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
55 lines (55 loc) · 1.36 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
{
"name": "tiptap-pagination-breaks",
"version": "1.0.1",
"description": "A Tiptap extension for pagination",
"main": "dist/index.js",
"module": "dist/index.esm.js",
"types": "dist/index.d.ts",
"type": "module",
"scripts": {
"build": "rollup -c",
"dev": "rollup -c -w",
"lint": "eslint src/**/*.ts",
"prepublishOnly": "npm run build"
},
"keywords": [
"tiptap",
"extension",
"pagination",
"page-breaks",
"document",
"editor",
"prosemirror",
"wysiwyg",
"rich-text",
"pagination-breaks",
"tiptap-extension",
"content-editor",
"publishing",
"page-layout",
"page-division",
"markdown"
],
"author": "Aditya Yaduvanshi",
"license": "MIT",
"repository": {
"type": "git",
"url": "git@github.com:adityayaduvanshi/tiptap-pagination-breaks.git"
},
"homepage": "https://github.com/adityayaduvanshi/tiptap-pagination-breaks#readme",
"devDependencies": {
"@rollup/plugin-commonjs": "^28.0.0",
"@rollup/plugin-node-resolve": "^15.3.0",
"@types/node": "^22.7.4",
"@typescript-eslint/eslint-plugin": "^8.8.0",
"@typescript-eslint/parser": "^8.8.0",
"eslint": "^9.12.0",
"rollup": "^4.24.0",
"rollup-plugin-typescript2": "^0.36.0",
"typescript": "^5.6.2"
},
"dependencies": {
"@tiptap/core": "^2.8.0",
"prosemirror-state": "^1.4.3"
}
}