@unavatar/core 0.0.3 → 0.0.4

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/package.json +3 -1
  2. package/src/index.js +1 -0
package/package.json CHANGED
@@ -2,7 +2,7 @@
2
2
  "name": "@unavatar/core",
3
3
  "description": "Get unified user avatar from social networks, including Instagram, SoundCloud, Telegram, Twitter, YouTube & more.",
4
4
  "homepage": "https://unavatar.io",
5
- "version": "0.0.3",
5
+ "version": "0.0.4",
6
6
  "main": "src/index.js",
7
7
  "exports": {
8
8
  ".": "./src/index.js",
@@ -137,6 +137,8 @@
137
137
  "url-regex": "~5.0.0"
138
138
  },
139
139
  "devDependencies": {
140
+ "mri": "latest",
141
+ "term-img": "latest",
140
142
  "@commitlint/cli": "latest",
141
143
  "@commitlint/config-conventional": "latest",
142
144
  "@ksmithut/prettier-standard": "latest",
package/src/index.js CHANGED
@@ -46,6 +46,7 @@ module.exports = ({ constants: userConstants } = {}) => {
46
46
  unavatar.providersBy = providersBy
47
47
  unavatar.reachableUrl = reachableUrl
48
48
  unavatar.got = got
49
+ unavatar.createBrowser = createBrowser
49
50
 
50
51
  return unavatar
51
52
  }