-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
119 lines (119 loc) · 4.06 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
{
"name": "chaya-editor",
"version": "1.0.0-beta.3",
"description": "A powerful and flexible text editor for React, built with Tiptap.",
"scripts": {
"tailwind": "tailwindcss -i ./src/style.scss -o ./dist/style.css -c ./tailwind.config.cjs",
"build-components": "rm -rf dist && rollup -c",
"build-tailwind": "npm run tailwind -- --minify",
"build": "npm run build-components && npm run build-tailwind",
"lint": "eslint src/ --ext .ts,.tsx",
"lint-fix": "eslint --fix src/ --ext .ts,.tsx",
"watch-tailwind": "npm run tailwind -- --watch",
"dev": "concurrently \"npm run watch-tailwind\" \"storybook dev -p 6006\"",
"build-storybook": "npm run build-tailwind && storybook build",
"type-check": "tsc --noEmit --emitDeclarationOnly false"
},
"contributors": [
"aswinshenoy <[email protected]>"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/traboda/react-github-markdown/issues"
},
"homepage": "https://github.com/traboda/react-github-markdown#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/traboda/chaya-editor.git"
},
"keywords": [
"react",
"react-components",
"traboda",
"wysiwyg",
"editor"
],
"devDependencies": {
"@babel/core": "^7.20.12",
"@babel/preset-env": "^7.22.9",
"@babel/preset-react": "^7.22.5",
"@babel/preset-typescript": "^7.22.5",
"@rollup/plugin-commonjs": "^24.0.0",
"@rollup/plugin-json": "^6.0.0",
"@rollup/plugin-node-resolve": "^15.0.1",
"@rollup/plugin-terser": "^0.3.0",
"@rollup/plugin-typescript": "^11.0.0",
"@storybook/addon-a11y": "^7.6.4",
"@storybook/addon-actions": "^7.6.4",
"@storybook/addon-essentials": "^7.6.4",
"@storybook/addon-interactions": "^7.6.4",
"@storybook/addon-links": "^7.6.4",
"@storybook/addon-styling": "^1.3.7",
"@storybook/react": "^7.6.4",
"@storybook/react-webpack5": "^7.6.4",
"@storybook/testing-library": "^0.2.2",
"@tiptap/extension-list-item": "^2.0.4",
"@tiptap/extension-subscript": "^2.0.4",
"@tiptap/extension-superscript": "^2.0.4",
"@tiptap/extension-task-item": "^2.0.4",
"@tiptap/extension-task-list": "^2.0.4",
"@tiptap/extension-underline": "^2.0.3",
"@tiptap/pm": "^2.0.3",
"@tiptap/react": "^2.0.3",
"@tiptap/starter-kit": "^2.0.3",
"@types/markdown-it": "^12.2.3",
"@types/markdown-it-footnote": "^3.0.0",
"@types/react": "^18.0.26",
"@types/react-dom": "^18.0.10",
"@typescript-eslint/eslint-plugin": "^5.48.2",
"@typescript-eslint/parser": "^5.48.2",
"autoprefixer": "^10.4.14",
"babel-loader": "^8.3.0",
"clsx": "^1.2.1",
"concurrently": "^8.2.0",
"css-loader": "^6.7.3",
"eslint": "^8.32.0",
"eslint-config-airbnb-typescript": "^17.0.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-react": "^7.32.1",
"eslint-plugin-storybook": "^0.6.15",
"postcss": "^8.4.21",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"rollup": "^3.10.0",
"rollup-plugin-dts": "^5.1.1",
"rollup-plugin-polyfill-node": "^0.11.0",
"rollup-plugin-postcss": "^4.0.2",
"rollup-plugin-preserve-directives": "^0.2.0",
"sass": "^1.57.1",
"sass-loader": "^13.2.0",
"storybook": "^7.6.4",
"storybook-dark-mode": "^3.0.3",
"style-loader": "^3.3.1",
"tailwindcss": "^3.2.4",
"typescript": "^4.9.4"
},
"peerDependencies": {
"react": "^18.2.0",
"react-dom": "^18.2.0"
},
"dependencies": {
"@docs.plus/extension-hyperlink": "^1.5.2",
"@tiptap/extension-color": "^2.1.13",
"@tiptap/extension-image": "^2.1.13",
"@tiptap/extension-placeholder": "^2.1.16",
"@tiptap/extension-table": "^2.1.13",
"@tiptap/extension-table-cell": "^2.1.13",
"@tiptap/extension-table-header": "^2.1.13",
"@tiptap/extension-table-row": "^2.1.13",
"@tiptap/extension-text-align": "^2.1.13",
"@tiptap/extension-text-style": "^2.1.13",
"@tiptap/suggestion": "^2.1.13",
"chaya-ui": "1.0.0-beta.74"
},
"files": [
"dist"
],
"module": "dist/src/index.js",
"types": "dist/types/index.d.ts"
}