-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
107 lines (107 loc) · 2.64 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": "mml-react",
"version": "0.0.0-development",
"description": "MML (Message Markup Language) for React.",
"author": "Getstream.io",
"homepage": "https://getstream.github.io/mml-react/",
"main": "dist/index.js",
"module": "dist/mml-react.esm.js",
"typings": "dist/index.d.ts",
"style": "dist/styles/index.css",
"license": "SEE LICENSE IN LICENSE",
"repository": {
"type": "git",
"url": "https://github.com/GetStream/mml-react.git"
},
"bugs": {
"url": "https://github.com/GetStream/mml-react/issues"
},
"files": [
"dist",
"src",
"LICENSE",
"!src/gatsby-theme-docz",
"!*.mdx",
"!*.md"
],
"scripts": {
"start": "tsdx watch",
"build": "tsdx build",
"test": "tsdx test",
"lint": "tsdx lint src",
"format": "prettier -w src/**/*.{ts,tsx,scss,mdx}",
"size": "size-limit",
"analyze": "size-limit --why",
"docs": "docz dev",
"docs-build": "rm -rf docs && docz build",
"prepare": "yarn build",
"preversion": "yarn install",
"semantic-release": "semantic-release"
},
"engines": {
"node": ">=10"
},
"peerDependencies": {
"react": "^18.0.0 || ^17.0.0 || ^16.8.0",
"react-dom": "^18.0.0 || ^17.0.0 || ^16.8.0"
},
"dependencies": {
"@braintree/sanitize-url": "^6.0.0",
"@rgrove/parse-xml": "^3.0.0",
"@types/linkifyjs": "^2.1.3",
"dayjs": "^1.10.4",
"ical-expander": "^3.1.0",
"linkifyjs": "^2.1.9",
"react-markdown": "^5.0.3",
"react-virtuoso": "^2.10.2"
},
"devDependencies": {
"@semantic-release/changelog": "^6.0.1",
"@semantic-release/git": "^10.0.1",
"@size-limit/preset-big-lib": "^4.9.2",
"@types/react": "^18.0.8",
"@types/react-dom": "^18.0.3",
"@types/react-test-renderer": "^18.0.0",
"cssnano": "^4.1.10",
"docz": "^2.3.1",
"gatsby-plugin-styled-components": "^3.10.0",
"husky": "^4.3.8",
"react": "^18.1.0",
"react-dom": "^18.1.0",
"react-test-renderer": "^18.1.0",
"rollup-plugin-ignore-import": "^1.3.2",
"rollup-plugin-scss": "^2.6.1",
"semantic-release": "^19.0.2",
"size-limit": "^4.9.2",
"styled-components": "^5.2.1",
"tsdx": "^0.14.1",
"tslib": "^2.3.1",
"typescript": "^4.4.3"
},
"husky": {
"hooks": {
"pre-commit": "tsdx lint"
}
},
"size-limit": [
{
"path": "dist/mml-react.cjs.production.min.js",
"limit": "95 KB",
"import": "{ createComponent }"
},
{
"path": "dist/styles/index.css",
"limit": "5 KB",
"webpack": false
}
],
"keywords": [
"stream",
"getstream",
"get-stream",
"react",
"chat",
"mml",
"mml-react"
]
}