forked from hamza2001-max/TipTap-Slash-React
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.29 KB
/
package.json
File metadata and controls
50 lines (50 loc) · 1.29 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
50
{
"name": "@middesk/tiptap-slash-react",
"version": "1.1.5",
"description": "A Tiptap extension for slash commands in react",
"main": "dist/index.js",
"module": "dist/index.esm.js",
"types": "dist/index.d.ts",
"style": "dist/index.css",
"files": [
"dist",
"src"
],
"scripts": {
"build": "tsc && rollup -c",
"prepublishOnly": "npm run build"
},
"keywords": [
"tiptap",
"extension",
"slash",
"suggestion"
],
"author": "Hamza Ali",
"license": "MIT",
"peerDependencies": {
"@tiptap/core": "^2.7.0",
"@tiptap/react": "^2.0.0",
"@tiptap/suggestion": "^2.0.0",
"react": "^17.0.0 || ^18.0.0",
"tippy.js": "^6.3.7"
},
"devDependencies": {
"@babel/core": "^7.25.7",
"@babel/preset-env": "^7.25.7",
"@babel/preset-react": "^7.25.7",
"@babel/preset-typescript": "^7.25.7",
"@rollup/plugin-babel": "^6.0.4",
"@rollup/plugin-commonjs": "^22.0.0",
"@rollup/plugin-node-resolve": "^13.3.0",
"@rollup/plugin-typescript": "^8.5.0",
"@types/estree": "^1.0.5",
"@types/react": "^18.0.0",
"@types/rollup-plugin-peer-deps-external": "^2.2.5",
"rollup": "^2.75.6",
"rollup-plugin-css-only": "^4.5.2",
"rollup-plugin-dts": "^4.2.2",
"rollup-plugin-postcss": "^4.0.2",
"typescript": "^4.7.3"
}
}