diff --git a/package.json b/package.json index b0fe77e..116c78a 100644 --- a/package.json +++ b/package.json @@ -72,7 +72,6 @@ "@types/on-finished": "^2.3.4", "@types/pem": "^1.14.4", "@types/proxy-addr": "^2.0.3", - "@types/qs": "^6.9.15", "@types/supertest": "^6.0.2", "@types/type-is": "^1.6.6", "@types/vary": "^1.1.3", @@ -112,9 +111,9 @@ "etag": "^1.8.1", "fresh": "^0.5.2", "mime-types": "^2.1.35", + "neoqs": "^6.12.3", "on-finished": "^2.4.1", "proxy-addr": "^2.0.7", - "qs": "^6.12.1", "tmp-cache": "^1.1.0", "type-is": "^1.6.18", "vary": "^1.1.2", diff --git a/src/qs.ts b/src/qs.ts index 5460307..7d4d960 100644 --- a/src/qs.ts +++ b/src/qs.ts @@ -7,7 +7,7 @@ * file that was distributed with this source code. */ -import { parse, stringify } from 'qs' +import { parse, stringify } from 'neoqs' import { QSParserConfig } from './types/qs.js' /** diff --git a/tests/router/router.spec.ts b/tests/router/router.spec.ts index d8cdb96..d6367cd 100644 --- a/tests/router/router.spec.ts +++ b/tests/router/router.spec.ts @@ -7,7 +7,7 @@ * file that was distributed with this source code. */ -import { parse } from 'qs' +import { parse } from 'neoqs' import { test } from '@japa/runner' import { EncryptionFactory } from '@adonisjs/encryption/factories'