Files
Web-Dev-For-Beginners/5-browser-extension/solution/package.json
dependabot[bot] 9e4158b8a7 Bump webpack from 5.88.1 to 5.94.0 in /5-browser-extension/solution
Bumps [webpack](https://github.com/webpack/webpack) from 5.88.1 to 5.94.0.
- [Release notes](https://github.com/webpack/webpack/releases)
- [Commits](https://github.com/webpack/webpack/compare/v5.88.1...v5.94.0)

---
updated-dependencies:
- dependency-name: webpack
  dependency-type: direct:development
...

Signed-off-by: dependabot[bot] <support@github.com>
2024-08-28 21:22:48 +00:00

30 lines
556 B
JSON

{
"name": "carbon-trigger-extension",
"version": "1.0.0",
"description": "",
"main": "index.js",
"engines": {
"npm": ">=9.0.0",
"node": ">=18.0.0"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"watch": "webpack --watch",
"build": "webpack"
},
"keywords": [
"chrome extension",
"edge extension",
"carbon usage tracker"
],
"author": "Microsoft Cloud Advocacy Team",
"license": "MIT",
"devDependencies": {
"webpack": "^5.94.0",
"webpack-cli": "^5.1.4"
},
"dependencies": {
"axios": "^1.7.4"
}
}