Files
omnivore/pkg/extension/package.json
Tom Rogers 84d05c0dbd Update dependencies (#4539)
* Bump react-markdown from 8.0.6 to 8.0.7

Bumps [react-markdown](https://github.com/remarkjs/react-markdown) from 8.0.6 to 8.0.7.
- [Release notes](https://github.com/remarkjs/react-markdown/releases)
- [Changelog](https://github.com/remarkjs/react-markdown/blob/main/changelog.md)
- [Commits](https://github.com/remarkjs/react-markdown/compare/8.0.6...8.0.7)

---
updated-dependencies:
- dependency-name: react-markdown
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <support@github.com>

* Bump nanoid from 4.0.2 to 5.0.9 in /pkg/extension

Bumps [nanoid](https://github.com/ai/nanoid) from 4.0.2 to 5.0.9.
- [Release notes](https://github.com/ai/nanoid/releases)
- [Changelog](https://github.com/ai/nanoid/blob/main/CHANGELOG.md)
- [Commits](https://github.com/ai/nanoid/compare/4.0.2...5.0.9)

---
updated-dependencies:
- dependency-name: nanoid
  dependency-type: direct:production
...

Signed-off-by: dependabot[bot] <support@github.com>

* Bump next from 13.5.8 to 14.2.21

Bumps [next](https://github.com/vercel/next.js) from 13.5.8 to 14.2.21.
- [Release notes](https://github.com/vercel/next.js/releases)
- [Changelog](https://github.com/vercel/next.js/blob/canary/release.js)
- [Commits](https://github.com/vercel/next.js/compare/v13.5.8...v14.2.21)

---
updated-dependencies:
- dependency-name: next
  dependency-type: direct:production
...

Signed-off-by: dependabot[bot] <support@github.com>

* Bump intercom-client from 3.2.1 to 6.0.0

Bumps [intercom-client](https://github.com/intercom/intercom-node) from 3.2.1 to 6.0.0.
- [Release notes](https://github.com/intercom/intercom-node/releases)
- [Commits](https://github.com/intercom/intercom-node/compare/v3.2.1...v6.0.0)

---
updated-dependencies:
- dependency-name: intercom-client
  dependency-type: direct:production
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <support@github.com>

* Bump nanoid from 3.3.8 to 5.0.9

Bumps [nanoid](https://github.com/ai/nanoid) from 3.3.8 to 5.0.9.
- [Release notes](https://github.com/ai/nanoid/releases)
- [Changelog](https://github.com/ai/nanoid/blob/main/CHANGELOG.md)
- [Commits](https://github.com/ai/nanoid/compare/3.3.8...5.0.9)

---
updated-dependencies:
- dependency-name: nanoid
  dependency-type: direct:production
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <support@github.com>

* Bump @aws-sdk/lib-storage from 3.730.0 to 3.744.0

Bumps [@aws-sdk/lib-storage](https://github.com/aws/aws-sdk-js-v3/tree/HEAD/lib/lib-storage) from 3.730.0 to 3.744.0.
- [Release notes](https://github.com/aws/aws-sdk-js-v3/releases)
- [Changelog](https://github.com/aws/aws-sdk-js-v3/blob/main/lib/lib-storage/CHANGELOG.md)
- [Commits](https://github.com/aws/aws-sdk-js-v3/commits/v3.744.0/lib/lib-storage)

---
updated-dependencies:
- dependency-name: "@aws-sdk/lib-storage"
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>

---------

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-02-11 18:22:50 +01:00

31 lines
1.1 KiB
JSON

{
"name": "omnivore-extension",
"version": "1.0.0",
"description": "browser extension for omnivore",
"main": "scripts/background-script.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "env EXT_ENV=local webpack --config webpack.js",
"build-qa": "env EXT_ENV=qa webpack --config webpack.js",
"build-demo": "env EXT_ENV=demo webpack --config webpack.js",
"build-firefox": "env EXT_ENV=firefox webpack --config webpack.js",
"build-prod": "env EXT_ENV=production webpack --config webpack.js",
"pack": "web-ext build --overwrite-dest --source-dir dist --artifacts-dir dist_packed --filename omnivore-v{version}.zip",
"pack-stores": "webext-store-incompat-fixer -i dist_packed/omnivore-v{version}.zip"
},
"devDependencies": {
"clean-webpack-plugin": "^3.0.0",
"copy-webpack-plugin": "^7.0.0",
"dotenv-webpack": "^6.0.0",
"semistandard": "^16.0.1",
"web-ext": "^6.4.0",
"webext-store-incompat-fixer": "^0.1.36",
"webpack": "^5.94.0",
"webpack-cli": "^4.3.1",
"webpack-merge": "^5.7.3"
},
"dependencies": {
"nanoid": "^5.0.9",
"uuid": "^8.3.2"
}
}