-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
80 lines (80 loc) · 2.26 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
{
"name": "@eulersgamma/richtext-editor",
"license": "MIT",
"version": "0.0.9",
"author": "Swapnal Shahil",
"description": "Rich Text Editor npm package",
"repository": {
"type": "git",
"url": "git+https://github.com/swapnalshahil/richtext-editor.git"
},
"keywords": [
"richtext-editor",
"rich-text-editor",
"rich text editor",
"draft-js",
"editor",
"eulersgamma"
],
"scripts": {
"dev": "vite",
"build-tailwind": "npx tailwindcss build src/style/tailwind.css -o src/style/tailwind.output.scss -c tailwind.config.js",
"clean": "rimraf dist",
"build-package": "yarn clean; rollup -c",
"publish": "npm publish",
"build": "tsc && vite build",
"preview": "vite preview",
"component:new": "hygen component with-prompt"
},
"peerDependencies": {
"react": ">=16.12.0",
"react-dom": ">=16.12.0"
},
"dependencies": {
"@rollup/plugin-image": "^3.0.2",
"@types/draft-js": "^0.11.18",
"draft-js": "^0.11.7",
"classnames": "^2.3.2"
},
"main": "index.js",
"module": "index.esm.js",
"types": "index.d.ts",
"devDependencies": {
"@babel/core": "^7.22.10",
"@babel/preset-env": "^7.22.10",
"@babel/preset-react": "^7.22.5",
"@rollup/plugin-babel": "^6.0.3",
"@rollup/plugin-commonjs": "^16.0.0",
"@rollup/plugin-node-resolve": "^10.0.0",
"@types/node": "^12.20.55",
"@types/react": "^18.2.20",
"@types/react-dom": "^16.9.5",
"@vitejs/plugin-react": "^1.3.0",
"autoprefixer": "^9.8.8",
"css-loader": "^6.8.1",
"hygen": "^6.0.4",
"less": "^3.9.0",
"lodash": "^4.17.10",
"lodash.get": "^4.4.2",
"postcss": "^7.0.39",
"postcss-flexbugs-fixes": "4.1.0",
"postcss-import": "^12.0.1",
"postcss-import-sync2": "1.1.0",
"postcss-scss": "2.0.0",
"postcss-url": "^8.0.0",
"rimraf": "^5.0.8",
"react": "^16.12.0",
"react-dom": "^16.12.0",
"rollup": "^2.33.3",
"rollup-plugin-copy": "^3.3.0",
"rollup-plugin-postcss": "^3.1.8",
"rollup-plugin-terser": "7.0.2",
"rollup-plugin-typescript2": "^0.29.0",
"sass": "^1.55.0",
"sass-loader": "^13.3.1",
"style-loader": "^3.3.3",
"tailwindcss": "npm:@tailwindcss/postcss7-compat@^2.2.17",
"typescript": "^3.9.2",
"vite": "^2.9.2"
}
}