Skip to content

Commit

Permalink
fix: relax peer dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
getlarge committed Oct 7, 2024
1 parent 2d87138 commit 687b53b
Show file tree
Hide file tree
Showing 7 changed files with 36 additions and 24 deletions.
5 changes: 5 additions & 0 deletions nx.json
Original file line number Diff line number Diff line change
Expand Up @@ -72,6 +72,11 @@
"{workspaceRoot}/.eslintignore",
"{workspaceRoot}/eslint.config.js"
]
},
"@nx/js:tsc": {
"cache": true,
"dependsOn": ["^build"],
"inputs": ["production", "^production"]
}
},
"nxCloudAccessToken": "ODFiNmMyMzAtODQ1OS00NGQzLWJjYmYtNzA2MmNlMTc2NTc5fHJlYWQtd3JpdGU=",
Expand Down
7 changes: 5 additions & 2 deletions packages/base-client-wrapper/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,11 +4,14 @@
"version": "0.1.6",
"license": "MIT",
"dependencies": {
"@nestjs/axios": "^3.0.3",
"@nestjs/common": "^10.4.4",
"tslib": "^2.7.0",
"axios": "1.7.7"
},
"peerDependencies": {
"@nestjs/axios": "^3",
"@nestjs/common": "^10",
"axios": "^1.6 || ^1.7"
},
"type": "commonjs",
"main": "./src/index.js",
"typings": "./src/index.d.ts"
Expand Down
8 changes: 4 additions & 4 deletions packages/hydra-client-wrapper/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,10 +12,10 @@
"tslib": "^2.7.0"
},
"peerDependencies": {
"axios": "1.7.7",
"@nestjs/axios": "^3.0.3",
"@nestjs/common": "^10.4.4",
"@ory/client": "^1.15.5"
"@nestjs/axios": "^3",
"@nestjs/common": "^10",
"axios": "^1.6 || ^1.7",
"@ory/client": "^1"
},
"type": "commonjs",
"main": "./src/index.js",
Expand Down
12 changes: 7 additions & 5 deletions packages/keto-cli/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,13 +11,15 @@
"dependencies": {
"tslib": "^2.7.0",
"@getlarge/keto-client-wrapper": "0.3.1",
"@nestjs/common": "^10.4.4",
"@nestjs/config": "^3.2.3",
"@getlarge/keto-relations-parser": "0.0.10",
"@ory/client": "^1.15.5",
"nest-commander": "^3.12.5",
"nest-commander": "^3.12.5"
},
"peerDependencies": {
"@nestjs/common": "^10",
"@nestjs/config": "^3",
"class-transformer": "^0.5.1",
"class-validator": "^0.14.1"
"class-validator": "^0.14.1",
"@ory/client": "^1"
},
"type": "commonjs",
"bin": {
Expand Down
10 changes: 5 additions & 5 deletions packages/keto-client-wrapper/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,11 +15,11 @@
"rxjs": "^7.8.0"
},
"peerDependencies": {
"axios": "1.7.7",
"@nestjs/axios": "^3.0.3",
"@nestjs/common": "^10.4.4",
"@nestjs/core": "^10.4.4",
"@ory/client": "^1.15.5"
"@nestjs/axios": "^3",
"@nestjs/common": "^10",
"@nestjs/core": "^10",
"axios": "^1.6 || ^1.7",
"@ory/client": "^1"
},
"type": "commonjs",
"main": "./src/index.js",
Expand Down
10 changes: 6 additions & 4 deletions packages/kratos-cli/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,13 +10,15 @@
},
"dependencies": {
"tslib": "^2.7.0",
"@nestjs/common": "^10.4.4",
"@getlarge/kratos-client-wrapper": "0.2.0",
"@nestjs/config": "^3.2.3",
"nest-commander": "^3.15.0",
"nest-commander": "^3.15.0"
},
"peerDependencies": {
"@nestjs/common": "^10",
"@nestjs/config": "^3",
"class-transformer": "^0.5.1",
"class-validator": "^0.14.1",
"@ory/client": "^1.15.5"
"@ory/client": "^1"
},
"type": "commonjs",
"bin": {
Expand Down
8 changes: 4 additions & 4 deletions packages/kratos-client-wrapper/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,10 +12,10 @@
"tslib": "^2.3.0"
},
"peerDependencies": {
"axios": "1.7.7",
"@nestjs/axios": "^3.0.3",
"@nestjs/common": "^10.4.4",
"@ory/client": "^1.15.5"
"@nestjs/axios": "^3",
"@nestjs/common": "^10",
"axios": "^1.6 || ^1.7",
"@ory/client": "^1"
},
"type": "commonjs",
"main": "./src/index.js",
Expand Down

0 comments on commit 687b53b

Please sign in to comment.