-
Notifications
You must be signed in to change notification settings - Fork 18
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.43 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 1.43 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
37
38
39
40
41
42
43
44
45
46
47
48
49
{
"name": "tiptap-extension-pagination",
"version": "2.1.4",
"description": "Add pagination to your Tiptap editor",
"author": {
"name": "Hugo Burton",
"email": "burto732@gmail.com",
"url": "https://www.github.com/hugs7"
},
"keywords": [
"tiptap",
"pagination",
"editor",
"rich-text"
],
"license": "ISC",
"repository": {
"type": "git",
"url": "git+https://github.com/hugs7/tiptap-extension-pagination.git"
},
"homepage": "https://www.github.com/hugs7/tiptap-extension-pagination",
"type": "module",
"main": "dist/index.js",
"module": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"clean": "rimraf dist",
"build": "npm run clean && rollup -c && npm run post-build",
"post-build": "tsc-alias",
"dev": "npm run clean && rollup -c -w",
"prepublishOnly": "npm run build"
},
"devDependencies": {
"@changesets/cli": "^2.28.1",
"@rollup/plugin-babel": "^6.0.3",
"@rollup/plugin-commonjs": "^28.0.2",
"@rollup/plugin-typescript": "^12.1.2",
"rimraf": "^6.0.1",
"rollup": "^4.34.0",
"rollup-plugin-auto-external": "^2.0.0",
"tsc-alias": "^1.8.10",
"tslib": "^2.8.1",
"typescript": "^5.7.3"
},
"peerDependencies": {
"@tiptap/core": "^2.11.5",
"@tiptap/pm": "^2.11.5"
}
}