-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathpackage.json
42 lines (42 loc) · 1.19 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
{
"name": "track-change-extension",
"version": "1.0.3",
"description": "A track change extension for tiptap editor. Just like the Office Word Revision.",
"keywords": ["tiptap", "trackchange","revision","extension"],
"license": "MIT",
"author": "Ray Chen<[email protected]>",
"repository": {
"type": "git",
"url": "https://github.com/chenyuncai/tiptap-track-change-extension.git"
},
"files": [
"dist/",
"src/"
],
"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.0.0-beta.220",
"@tiptap/pm": "^2.0.0-beta.220"
},
"publishConfig": {
"registry": "https://registry.npmjs.org/"
}
}