Skip to content

Commit

Permalink
Update deps, move internal @type peer dependencies to dependencies (#23)
Browse files Browse the repository at this point in the history
* bump version

* update peer dependencies

* update deps

* reassign request props

* reassign request props

* revert property assignment

* revert property assignments in middlewares

* move type deps into dependencies

* remove tsc from lint script

* export koarouter type

* export koarouter type

* remove exported koarouter type
  • Loading branch information
JakeFenley committed Apr 9, 2023
1 parent afcea02 commit 8bc7684
Show file tree
Hide file tree
Showing 3 changed files with 1,137 additions and 1,117 deletions.
5 changes: 5 additions & 0 deletions .changeset/late-horses-grow.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
'koa-zod-router': patch
---

Update deps, move internal type peer dependencies to dependencies
43 changes: 19 additions & 24 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "koa-zod-router",
"version": "1.1.3",
"version": "1.1.4-beta.6",
"description": "",
"main": "dist/index.js",
"module": "dist/index.mjs",
Expand All @@ -22,7 +22,7 @@
"test:coverage": "nyc --reporter=text mocha",
"test:ci": "nyc --reporter=lcov mocha",
"test:turbo": "turbo run test:ci",
"lint": "tsc && eslint \"src/**/*.ts\" --cache && prettier --check \"src/**/*.ts\"",
"lint": "eslint \"src/**/*.ts\" --cache && prettier --check \"src/**/*.ts\"",
"lint:turbo": "turbo run lint",
"release": "pnpm build:turbo && npm publish",
"release:beta": "pnpm build:turbo && npm publish --tag beta"
Expand All @@ -35,45 +35,40 @@
"license": "MIT",
"dependencies": {
"@koa/router": "^12.0.0",
"formidable": "^2.1.1",
"koa-bodyparser": "^4.3.0",
"zod": "^3.21.3"
},
"devDependencies": {
"@changesets/cli": "^2.26.0",
"@types/formidable": "^2.0.5",
"@types/koa": "^2.13.5",
"@types/koa-bodyparser": "^4.3.10",
"@types/koa__router": "^12.0.0",
"@types/node": "^18.14.6",
"formidable": "^2.1.1",
"koa-bodyparser": "^4.4.0",
"zod": "^3.21.4"
},
"devDependencies": {
"@changesets/cli": "^2.26.1",
"@types/koa": "^2.13.6",
"@types/node": "^18.15.11",
"@types/sinon": "^10.0.13",
"@types/supertest": "^2.0.12",
"@typescript-eslint/eslint-plugin": "^5.54.1",
"@typescript-eslint/parser": "^5.54.1",
"@typescript-eslint/eslint-plugin": "^5.57.1",
"@typescript-eslint/parser": "^5.57.1",
"coveralls": "^3.1.1",
"eslint": "^8.35.0",
"eslint-config-prettier": "^8.7.0",
"eslint": "^8.38.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-prettier": "^4.2.1",
"husky": "^8.0.3",
"koa": "^2.14.1",
"mocha": "^10.2.0",
"mocha-lcov-reporter": "^1.3.0",
"nyc": "^15.1.0",
"prettier": "^2.8.4",
"sinon": "^15.0.1",
"prettier": "^2.8.7",
"sinon": "^15.0.3",
"supertest": "^6.3.3",
"ts-node-dev": "^2.0.0",
"tsup": "^6.6.3",
"turbo": "^1.8.3",
"typescript": "4.9.4"
"tsup": "^6.7.0",
"turbo": "^1.8.8",
"typescript": "5.0.4"
},
"peerDependencies": {
"@koa/router": ">=12.0.0 <13.x",
"@types/formidable": ">=2.0.5 <3.x",
"@types/koa": ">=2.13.5 <3.x",
"@types/koa-bodyparser": ">=4.3.10 <5.x",
"@types/koa__router": ">=12.0.0 <13.x",
"koa": ">=2.14.1 <3.x",
"zod": ">=3.20.2 <4.x"
},
Expand Down
Loading

0 comments on commit 8bc7684

Please sign in to comment.