-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
107 lines (107 loc) · 2.86 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
{
"name": "medium-editor-plugin",
"version": "0.1.10",
"repository": {
"type": "git",
"url": "https://github.com/vincent0426/medium-editor-plugin"
},
"license": "MIT",
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"files": [
"dist"
],
"engines": {
"node": ">=10"
},
"scripts": {
"start": "tsdx watch",
"build": "tsdx build && yarn build-tailwind",
"build-tailwind": "npx tailwindcss -o ./dist/styles.css --minify",
"test": "tsdx test --passWithNoTests",
"lint": "tsdx lint",
"prepare": "tsdx build && yarn build-tailwind",
"size": "size-limit",
"analyze": "size-limit --why",
"storybook": "storybook dev",
"build-storybook": "storybook build"
},
"peerDependencies": {
"react": ">=16"
},
"husky": {
"hooks": {
"pre-commit": "tsdx lint"
}
},
"prettier": {
"printWidth": 80,
"semi": true,
"singleQuote": true,
"trailingComma": "es5"
},
"author": "Vincent",
"module": "dist/medium-editor.esm.js",
"size-limit": [
{
"path": "dist/medium-editor.cjs.production.min.js",
"limit": "10 KB"
},
{
"path": "dist/medium-editor.esm.js",
"limit": "10 KB"
}
],
"devDependencies": {
"@babel/core": "^7.22.9",
"@babel/preset-env": "^7.22.9",
"@rollup/plugin-typescript": "^11.1.2",
"@size-limit/preset-small-lib": "^8.2.6",
"@storybook/addon-essentials": "^7.0.27",
"@storybook/addon-info": "^5.3.21",
"@storybook/addon-links": "^7.0.27",
"@storybook/addon-postcss": "^2.0.0",
"@storybook/addons": "^7.0.27",
"@storybook/cli": "^7.0.27",
"@storybook/react": "^7.0.27",
"@storybook/react-webpack5": "^7.0.27",
"@types/react": "^18.2.15",
"@types/react-dom": "^18.2.7",
"autoprefixer": "^10.4.14",
"babel-loader": "^9.1.3",
"husky": "^8.0.3",
"postcss": "^8.4.26",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-is": "^18.2.0",
"rollup-plugin-postcss": "^4.0.2",
"size-limit": "^8.2.6",
"storybook": "^7.0.27",
"tailwindcss": "^3.3.3",
"tsdx": "^0.14.1",
"tslib": "^2.6.0",
"typescript": "^5.1.6"
},
"dependencies": {
"@tailwindcss/typography": "^0.5.9",
"@tiptap/extension-character-count": "^2.0.3",
"@tiptap/extension-document": "^2.0.3",
"@tiptap/extension-heading": "^2.0.3",
"@tiptap/extension-image": "^2.0.3",
"@tiptap/extension-link": "^2.0.3",
"@tiptap/extension-placeholder": "^2.0.3",
"@tiptap/extension-text-align": "^2.0.3",
"@tiptap/pm": "^2.0.3",
"@tiptap/react": "^2.0.3",
"@tiptap/starter-kit": "^2.0.3",
"@types/react": "^18.2.14",
"@types/react-dom": "^18.2.6",
"classnames": "^2.3.2",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-icons": "^4.10.1",
"react-moveable": "^0.54.1",
"sweetalert2": "^11.7.16",
"typescript": "^5.1.6"
}
}