-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
154 lines (154 loc) · 5.21 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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
{
"name": "mui-tiptap-editor",
"version": "0.9.23",
"description": "Easy to use Tiptap WYSIWYG rich text editor using Material UI (MUI) for React",
"keywords": [
"mui",
"tiptap",
"material-ui",
"prosemirror",
"rich text editor",
"react text editor",
"wysiwyg",
"quill",
"draftjs",
"slate"
],
"homepage": "https://github.com/tiavina-mika/mui-tiptap-editor",
"bugs": {
"url": "https://github.com/tiavina-mika/mui-tiptap-editor/issues"
},
"author": {
"name": "Tiavina Michael Ralainirina",
"email": "[email protected]",
"github": "https://github.com/tiavina-mika"
},
"license": "MIT",
"type": "module",
"types": "./dist/index.d.ts",
"main": "dist/index.js",
"module": "dist/esm/index.js",
"exports": {
".": {
"types": "./dist/index.d.ts",
"require": "./dist/index.js",
"import": "./dist/esm/index.js"
},
"./icons": {
"types": "./dist/icons/index.d.ts",
"require": "./dist/icons/index.js",
"import": "./dist/esm/icons/index.js"
}
},
"files": [
"/dist"
],
"publishConfig": {
"access": "public"
},
"scripts": {
"clean": "rimraf dist",
"dev": "vite",
"build": "yarn clean && tsc --project tsconfig.build.json && tsc --project tsconfig.build-esm.json && yarn copy-files && yarn copy-files-esm && yarn fixImportExtension",
"prepare": "husky",
"lint-staged": "lint-staged",
"preview": "vite preview",
"type:check": "tsc --noEmit",
"format": "prettier --write .",
"format:check": "prettier --check .",
"lint:check": "eslint --max-warnings 0 --ext .js,.jsx,.ts,.tsx src",
"lint": "eslint . --fix",
"md-link:check": "markdown-link-check -v -p README.md -v -p CONTRIBUTING.md -v -p .github/**/*.md -c .markdown-link-check-config.json",
"spell:check": "cspell \"{README.md,CONTRIBUTING.md,.github/*.md}\"",
"visualize": "npx vite-bundle-visualizer",
"publish": "yarn build && yarn npm publish && yarn example",
"copy-files": "copyfiles -u 1 src/*types.d.ts src/*.css dist/",
"copy-files-esm": "copyfiles -u 1 src/*types.d.ts src/*.css dist/esm",
"clean-cache": "yarn cache clean --all",
"fixImportExtension": "ts-add-js-extension --dir=dist",
"example": "cd example && yarn upgrade && rimraf ./example/node_modules && yarn && yarn dev",
"test": "jest",
"test:watch": "jest watch",
"test:coverage": "jest --coverage"
},
"dependencies": {
"@emotion/css": "^11.11.2",
"@tiptap/extension-bubble-menu": "^2.4.0",
"@tiptap/extension-code-block-lowlight": "^2.4.0",
"@tiptap/extension-color": "^2.4.0",
"@tiptap/extension-gapcursor": "^2.4.0",
"@tiptap/extension-heading": "^2.4.0",
"@tiptap/extension-image": "^2.5.6",
"@tiptap/extension-link": "^2.5.7",
"@tiptap/extension-mention": "^2.4.0",
"@tiptap/extension-placeholder": "^2.4.0",
"@tiptap/extension-table": "^2.4.0",
"@tiptap/extension-table-cell": "^2.4.0",
"@tiptap/extension-table-header": "^2.4.0",
"@tiptap/extension-table-row": "^2.4.0",
"@tiptap/extension-text": "^2.4.0",
"@tiptap/extension-text-align": "^2.4.0",
"@tiptap/extension-text-style": "^2.4.0",
"@tiptap/extension-typography": "^2.4.0",
"@tiptap/extension-underline": "^2.4.0",
"@tiptap/extension-youtube": "^2.4.0",
"@tiptap/pm": "^2.4.0",
"@tiptap/react": "^2.4.0",
"@tiptap/starter-kit": "^2.4.0",
"@tiptap/suggestion": "^2.4.0",
"lowlight": "3.1.0"
},
"peerDependencies": {
"@emotion/react": "^11.11.3",
"@mui/material": "^5.15.2",
"react": "^16.8.0 || ^17.0.2 || ^18.2.0",
"react-dom": "^16.8.0 || ^17.0.2 || ^18.2.0"
},
"devDependencies": {
"@emotion/babel-plugin": "^11.11.0",
"@emotion/react": "^11.11.3",
"@emotion/styled": "^11.11.5",
"@eslint-community/eslint-plugin-eslint-comments": "^4.4.0",
"@eslint/compat": "^1.2.0",
"@eslint/eslintrc": "^3.1.0",
"@eslint/js": "^9.12.0",
"@mui/material": "^5.15.2",
"@stylistic/eslint-plugin": "^2.9.0",
"@types/eslint-plugin-jsx-a11y": "^6",
"@types/eslint__js": "^8.42.3",
"@types/jest": "^29.5.12",
"@types/react": "^18.2.43",
"@types/react-dom": "^18.2.17",
"@vitejs/plugin-react": "^4.2.1",
"babel-plugin-module-resolver": "^5.0.0",
"copyfiles": "^2.4.1",
"cspell": "^6.31.1",
"eslint": "^9.12.0",
"eslint-config-prettier": "^9.1.0",
"eslint-import-resolver-babel-module": "^5.3.2",
"eslint-plugin-eslint-comments": "^3.2.0",
"eslint-plugin-jest": "^28.8.3",
"eslint-plugin-jsx-a11y": "^6.10.0",
"eslint-plugin-prefer-arrow-functions": "^3.4.1",
"eslint-plugin-prettier": "^5.2.1",
"eslint-plugin-react-hooks": "^4.6.2",
"eslint-plugin-react-refresh": "^0.4.12",
"globals": "^15.11.0",
"husky": "^9.1.6",
"jest": "^29.7.0",
"lint-staged": "^15.2.10",
"markdown-link-check": "^3.12.1",
"prettier": "^3.3.3",
"prettier-plugin-organize-imports": "^3.2.4",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"rimraf": "^5.0.5",
"ts-add-js-extension": "^1.6.4",
"ts-jest": "^29.1.4",
"typescript": "5.5.3",
"typescript-eslint": "^8.8.1",
"vite": "5.0.8",
"vite-tsconfig-paths": "^4.3.1"
},
"packageManager": "[email protected]"
}