ffflorian / api-clients

API clients for various services

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Bad usage of dependencies

NanderTGA opened this issue · comments

I wanted to update a dependency recently but turns out I can't since your packages only allow the usage of one specific version of each dependency.
I suggest you change this

  "dependencies": {
    "axios": "1.6.2",
    "commander": "11.1.0"
  },

to this

  "dependencies": {
    "axios": "^1.6.2",
    "commander": "^11.1.0"
  },

I suggest you fix this in all your packages so people can swiftly update dependencies in the case of a security vulnerability.