-
Notifications
You must be signed in to change notification settings - Fork 14
/
package.json
96 lines (96 loc) · 2.38 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
{
"name": "brilliant-editor",
"author": "brilliant-js",
"description": "Brilliant is a WYSIWYG markdown editor with live preview support, based on Draft-js and React, implemented in TypeScript. It's compatible with popular browsers.",
"version": "1.1.2",
"license": "MIT",
"homepage": "https://brilliant-js.com",
"repository": "https://github.com/brilliant-js/brilliant",
"main": "dist/index.js",
"module": "dist/index.js",
"typings": "dist/index.d.ts",
"keywords": [
"editor",
"typescript",
"draft",
"draft.js",
"scss",
"markdown",
"WYSIWYG",
"react"
],
"files": [
"dist"
],
"engines": {
"node": ">=10"
},
"scripts": {
"start": "tsdx watch",
"build": "tsdx build",
"test": "tsdx test --passWithNoTests",
"lint": "tsdx lint",
"prepare": "tsdx build",
"size": "size-limit",
"analyze": "size-limit --why"
},
"peerDependencies": {
"classnames": ">=2",
"react": ">=16"
},
"prettier": {
"printWidth": 80,
"semi": true,
"singleQuote": true,
"trailingComma": "es5"
},
"size-limit": [
{
"path": "dist/brilliant-editor.cjs.production.min.js",
"limit": "10 KB"
},
{
"path": "dist/brilliant-editor.esm.js",
"limit": "10 KB"
}
],
"devDependencies": {
"@size-limit/preset-small-lib": "^4.9.1",
"@types/jest": "^26.0.15",
"@types/node": "^12.0.0",
"@types/react": "^17.0.0",
"@types/react-dom": "^17.0.0",
"@types/react-popover": "^0.5.3",
"autoprefixer": "^10.2.3",
"cssnano": "^4.1.10",
"husky": "^4.3.8",
"node-sass": "4.14.1",
"postcss": "^8.2.4",
"postcss-preset-env": "^6.7.0",
"react": "^17.0.1",
"react-dom": "^17.0.1",
"rollup-plugin-postcss": "^4.0.0",
"sass": "^1.32.5",
"size-limit": "^4.9.1",
"tsdx": "^0.14.1",
"tslib": "^2.1.0",
"typescript": "^4.1.3"
},
"dependencies": {
"@types/draft-js": "^0.10.44",
"classnames": "^2.2.6",
"draft-js": "^0.11.7",
"draft-js-plugins-editor": "^3.0.0",
"draft-js-prism": "^1.0.6",
"draft-js-prism-plugin": "^0.1.3",
"draftjs-utils": "^0.10.2",
"prismjs": "^1.22.0",
"react-copy-to-clipboard": "^5.0.3",
"react-photo-view": "^0.5.2",
"react-popover": "^0.5.10",
"react-toastify": "^6.2.0",
"react-tooltip": "^4.2.13",
"remarkable": "^2.0.1",
"state-controller": "^1.3.2"
}
}